Skip to content

Commit ae04366

Browse files
committed
fix
1 parent 4aa6d5d commit ae04366

File tree

3 files changed

+7
-7
lines changed

3 files changed

+7
-7
lines changed

.github/workflows/CI.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ jobs:
1818
fail-fast: false
1919
matrix:
2020
version:
21-
- '1.6'
21+
- '1.7'
2222
- '1'
2323
- 'nightly'
2424
os:

Project.toml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ OffsetArrays = "6fe1bfb0-de20-5000-8ca7-80f57d26f881"
1010

1111
[compat]
1212
Accessors = "0.1"
13-
julia = "1.6"
13+
julia = "1.7"
1414

1515
[extras]
1616
Test = "8dfed614-e22c-5e08-85e1-65c5234f0b40"

test/runtests.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,11 @@ mutable struct MAB
1313
b
1414
end
1515

16+
struct AB
17+
a
18+
b
19+
end
20+
1621
@testset "oneliners" begin
1722
@test whynot(==, "","") isa WN.TheSame
1823
@test whynot(==, 1,1) isa WN.TheSame
@@ -82,11 +87,6 @@ end
8287

8388
end
8489

85-
struct AB
86-
a
87-
b
88-
end
89-
9090
@test whynot(==, AB(1,2), AB(1,2)) isa WN.TheSame
9191
@test whynot(==, AB(1,2), AB(1,3)).lens === (@optic _.b)
9292
@test whynot(==, AB(1,AB(2,3)), AB(1,AB(3,3))).lens === @optic _.b.a

0 commit comments

Comments
 (0)