Skip to content

Commit 6b04ae3

Browse files
format
1 parent 3977448 commit 6b04ae3

File tree

1 file changed

+3
-4
lines changed

1 file changed

+3
-4
lines changed

RecipesBase/test/test_api.jl

Lines changed: 3 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -2,16 +2,16 @@ using RecipesBase, Test
22

33
@testset "Cycling attributes" begin
44
c1 = cycle([:red, :green])
5-
@test c1[1] == :red
5+
@test c1[1] == :red
66
@test c1[2] == :green
77
@test c1[3] == :red
88
@test c1[4] == :green
99
c2 = cycle([:red :green; :blue :yellow])
10-
@test c2[1] == :red
10+
@test c2[1] == :red
1111
@test c2[2] == :blue
1212
@test c2[3] == :green
1313
@test c2[4] == :yellow
14-
@test c2[5] == :red
14+
@test c2[5] == :red
1515
@test c2[6] == :blue
1616
@test c2[7] == :green
1717
@test c2[8] == :yellow
@@ -20,4 +20,3 @@ using RecipesBase, Test
2020
@test c2[3, :] == [:red, :green]
2121
@test c2[:, 3] == [:red, :blue]
2222
end
23-
end

0 commit comments

Comments
 (0)