Skip to content

Commit a8e3ef3

Browse files
committed
fix: update performance test expectation to use lessThanOrEqualTo for improved accuracy
1 parent d59d9e2 commit a8e3ef3

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

packages/vyuh_node_flow/test/performance/rapid_operations_test.dart

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -535,7 +535,7 @@ void main() {
535535
// Performance should not degrade by more than 50%
536536
expect(
537537
time2,
538-
lessThan(time1 * 1.5),
538+
lessThanOrEqualTo(time1 * 1.5),
539539
reason: 'Performance should not degrade after many operations',
540540
);
541541
});

0 commit comments

Comments
 (0)