We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 3977448 commit 6b04ae3Copy full SHA for 6b04ae3
RecipesBase/test/test_api.jl
@@ -2,16 +2,16 @@ using RecipesBase, Test
2
3
@testset "Cycling attributes" begin
4
c1 = cycle([:red, :green])
5
- @test c1[1] == :red
+ @test c1[1] == :red
6
@test c1[2] == :green
7
@test c1[3] == :red
8
@test c1[4] == :green
9
c2 = cycle([:red :green; :blue :yellow])
10
- @test c2[1] == :red
+ @test c2[1] == :red
11
@test c2[2] == :blue
12
@test c2[3] == :green
13
@test c2[4] == :yellow
14
- @test c2[5] == :red
+ @test c2[5] == :red
15
@test c2[6] == :blue
16
@test c2[7] == :green
17
@test c2[8] == :yellow
@@ -20,4 +20,3 @@ using RecipesBase, Test
20
@test c2[3, :] == [:red, :green]
21
@test c2[:, 3] == [:red, :blue]
22
end
23
-end
0 commit comments