correct test

This commit is contained in:
Simon Christ 2022-04-25 22:11:22 +02:00
parent ffe7f9e23e
commit 5361a5a55f

View File

@ -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