Skip to content

Commit 6793c43

Browse files
committed
Update Makie version in tests
1 parent 43e9a0e commit 6793c43

File tree

8 files changed

+6
-7
lines changed

8 files changed

+6
-7
lines changed

test/Project.toml

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -18,5 +18,4 @@ TypedTables = "9d95f2ec-7b3d-5a63-8d20-e2491e220bb9"
1818
Unitful = "1986cc42-f94f-5a68-af5c-568840ba703d"
1919

2020
[compat]
21-
CairoMakie = "0.10"
22-
PairPlots = "1.1"
21+
PairPlots = "2.1"

test/data/eigenanalysis-1.png

205 KB
Loading

test/data/eigenanalysis-2.png

326 KB
Loading

test/data/projectionpursuit-1.png

279 KB
Loading

test/data/projectionpursuit-2.png

546 KB
Loading

test/data/projectionpursuit-3.png

145 KB
Loading

test/transforms/eigenanalysis.jl

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -54,13 +54,13 @@
5454
# visual tests
5555
if visualtests
5656
kwargs = (; bodyaxis=(; aspect=Mke.DataAspect()))
57-
fig = Mke.Figure(resolution=(1000, 1000))
57+
fig = Mke.Figure(size=(1000, 1000))
5858
pairplot(fig[1, 1], t₁; kwargs...)
5959
pairplot(fig[1, 2], t₂; kwargs...)
6060
pairplot(fig[2, 1], t₃; kwargs...)
6161
pairplot(fig[2, 2], t₄; kwargs...)
6262
@test_reference joinpath(datadir, "eigenanalysis-1.png") fig
63-
fig = Mke.Figure(resolution=(1500, 1000))
63+
fig = Mke.Figure(size=(1500, 1000))
6464
pairplot(fig[1, 1], t₂; kwargs...)
6565
pairplot(fig[1, 2], t₃; kwargs...)
6666
pairplot(fig[1, 3], t₄; kwargs...)

test/transforms/projectionpursuit.jl

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -20,10 +20,10 @@
2020
tₒ = revert(T, n, c)
2121

2222
if visualtests
23-
fig = Mke.Figure(resolution=(800, 800))
23+
fig = Mke.Figure(size=(800, 800))
2424
pairplot(fig[1, 1], n)
2525
@test_reference joinpath(datadir, "projectionpursuit-1.png") fig
26-
fig = Mke.Figure(resolution=(1600, 800))
26+
fig = Mke.Figure(size=(1600, 800))
2727
pairplot(fig[1, 1], t)
2828
pairplot(fig[1, 2], tₒ)
2929
@test_reference joinpath(datadir, "projectionpursuit-2.png") fig
@@ -44,7 +44,7 @@
4444
tₒ = revert(T, n, c)
4545

4646
if visualtests
47-
fig = Mke.Figure(resolution=(1500, 500))
47+
fig = Mke.Figure(size=(1500, 500))
4848
pairplot(fig[1, 1], t)
4949
pairplot(fig[1, 2], n)
5050
pairplot(fig[1, 3], tₒ)

0 commit comments

Comments
 (0)