From 5361a5a55f0216f0bd3251b3324c82b4f07dfeab Mon Sep 17 00:00:00 2001 From: Simon Christ Date: Mon, 25 Apr 2022 22:11:22 +0200 Subject: [PATCH] correct test --- test/test_args.jl | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/test_args.jl b/test/test_args.jl index a9e865dc..f472e40e 100644 --- a/test/test_args.jl +++ b/test/test_args.jl @@ -21,7 +21,7 @@ end pl = bar(["a", "b", "c"], [1, 2, 3]) ppl = bar(["a", "b", "c"], [1, 2, 3], series_permutation = (:x, :y)) @test xticks(ppl) == yticks(pl) - @test yticks(pl) == xticks(ppl) + @test yticks(ppl) == xticks(pl) @test filter(isfinite, pl[1][1][:x]) == filter(isfinite, ppl[1][1][:y]) @test filter(isfinite, pl[1][1][:y]) == filter(isfinite, ppl[1][1][:x]) end