Skip to content

Commit e99fdc1

Browse files
committed
Fix scale tests
1 parent 0398dce commit e99fdc1

File tree

1 file changed

+5
-5
lines changed

1 file changed

+5
-5
lines changed

test/scales.jl

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -7,11 +7,11 @@
77

88
@testset "Scale indexing" begin
99
scale = Scale(D[4], major_scale)
10-
@test scale[0] == D[4]
11-
@test scale[6] == C♯[5]
12-
@test scale[7] == D[5]
13-
@test scale[-1] == C♯[4]
14-
@test scale[-2] == B[3]
10+
@test scale[2] == E[4]
11+
@test scale[8] == D[5]
12+
@test scale[-1] == D[4]
13+
@test scale[-2] == C♯[4]
14+
@test scale[-3] == B[3]
1515
end
1616

1717

0 commit comments

Comments
 (0)