Skip to content

Commit e96af16

Browse files
committed
Use unique memory maximum value in test input
Previously the same value was used for both memory types in this test, which might result in false negatives.
1 parent aed2333 commit e96af16

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

compilesketches/tests/test_compilesketches.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2621,7 +2621,7 @@ def test_get_sizes_summary_report():
26212621
},
26222622
{
26232623
compilesketches.CompileSketches.ReportKeys.name: "Bar memory type",
2624-
compilesketches.CompileSketches.ReportKeys.maximum: 111,
2624+
compilesketches.CompileSketches.ReportKeys.maximum: 222,
26252625
compilesketches.CompileSketches.ReportKeys.current: {
26262626
compilesketches.CompileSketches.ReportKeys.absolute: 33,
26272627
compilesketches.CompileSketches.ReportKeys.relative: 3.342,

0 commit comments

Comments
 (0)