Skip to content

Commit

Permalink
Fixed error in tests
Browse files Browse the repository at this point in the history
  • Loading branch information
Durchbruchswagen committed Dec 9, 2024
1 parent 5788c8f commit e634703
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test/func_blocks/fu/fpu/test_lza.py
Original file line number Diff line number Diff line change
Expand Up @@ -93,7 +93,7 @@ async def lza_test(sim: TestbenchContext):
{"shift_amount": 7, "is_zero": 0},
{"shift_amount": 7, "is_zero": 0},
]
for i in range(len(test_cases) // 2):
for i in range(len(test_cases)):

resp = await lza.predict_request_adapter.call(sim, test_cases[i])
assert resp["shift_amount"] == expected_results[2 * i]["shift_amount"]
Expand Down

0 comments on commit e634703

Please sign in to comment.