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