Skip to content
Merged
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
Fix variable name in performance test assertion
Replaces incorrect usage of 'm' with 'model' in the assertion within test_sum_performance to ensure the correct object is referenced.
  • Loading branch information
Zeroto521 committed Oct 9, 2025
commit 929fc1a7266a7708b1340550987f3a8d139c877a
2 changes: 1 addition & 1 deletion tests/test_matrix_variable.py
Original file line number Diff line number Diff line change
Expand Up @@ -228,7 +228,7 @@ def test_sum_performance():

matrix_time = end_matrix - start_matrix
orig_time = end_orig - start_orig
assert m.isGT(orig_time, matrix_time)
assert model.isGT(orig_time, matrix_time)


def test_add_cons_matrixVar():
Expand Down
Loading