Skip to content

Commit 3410532

Browse files
committed
fixing
1 parent 7331111 commit 3410532

2 files changed

Lines changed: 3 additions & 1 deletion

File tree

build/test-requirements.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ fastapi
1313
uvicorn
1414
django
1515
testscenarios
16+
testtools
1617

1718
# Integrated TensorBoard tests
1819
tensorboard

python_files/tests/unittestadapter/.data/test_scenarios/tests/test_scene.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,11 +3,12 @@
33

44
from testscenarios import TestWithScenarios
55

6+
67
class TestMathOperations(TestWithScenarios):
78
scenarios = [
89
('add', {'test_id': 'test_add', 'a': 5, 'b': 3, 'expected': 8}),
910
('subtract', {'test_id': 'test_subtract', 'a': 5, 'b': 3, 'expected': 2}),
10-
('multiply', {'test_id': 'test_multiply', 'a': 5, 'b': 3, 'expected': 15})
11+
('multiply', {'test_id': 'test_multiply', 'a': 5, 'b': 3, 'expected': 15}),
1112
]
1213
a: int = 0
1314
b: int = 0

0 commit comments

Comments
 (0)