Skip to content

Commit 1032650

Browse files
committed
Revert "Update test which relies on ordering of Dict"
This reverts commit 0d822c1. Oops, was running tests on a fork of Julia.
1 parent 0d822c1 commit 1032650

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

test/GroupsTests.jl

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -364,24 +364,24 @@ g1["c"] = tc
364364
@test sprint(show, g1) == """
365365
3-element BenchmarkTools.BenchmarkGroup:
366366
tags: ["1", "2"]
367-
"b" => TrialEstimate(4.123 μs)
368367
"c" => TrialEstimate(1.000 ns)
368+
"b" => TrialEstimate(4.123 μs)
369369
"a" => TrialEstimate(32.000 ns)"""
370370
@test sprint(show, g1; context=:boundto => 1) == """
371371
3-element BenchmarkTools.BenchmarkGroup:
372372
tags: ["1", "2"]
373-
"b" => TrialEstimate(4.123 μs)
373+
"c" => TrialEstimate(1.000 ns)
374374
"""
375375
@test sprint(show, g1; context=:limit => false) == """
376376
3-element BenchmarkTools.BenchmarkGroup:
377377
tags: ["1", "2"]
378-
"b" => TrialEstimate(4.123 μs)
379378
"c" => TrialEstimate(1.000 ns)
379+
"b" => TrialEstimate(4.123 μs)
380380
"a" => TrialEstimate(32.000 ns)"""
381381
@test @test_deprecated(sprint(show, g1; context=:limit => 1)) == """
382382
3-element BenchmarkTools.BenchmarkGroup:
383383
tags: ["1", "2"]
384-
"b" => TrialEstimate(4.123 μs)
384+
"c" => TrialEstimate(1.000 ns)
385385
"""
386386

387387
# EasyConfig-style benchmark groups #

0 commit comments

Comments
 (0)