Skip to content

Commit ca8e553

Browse files
committed
fix type issue
1 parent 2361916 commit ca8e553

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/unit/executor/test_profile_generator.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -144,7 +144,7 @@ def test_pending_rates():
144144
benchmarks = [mock_benchmark, mock_overloaded_benchmark]
145145
mock_report.benchmarks = benchmarks
146146
profile = test_profile_generator.next(mock_report)
147-
assert profile is not None
148147
for expected_rate in numpy.linspace(2.0, 8.0, 10):
149148
profile = test_profile_generator.next(mock_report)
149+
assert profile is not None
150150
assert profile.load_gen_rate == expected_rate

0 commit comments

Comments
 (0)