Skip to content

Commit d94ffa7

Browse files
committed
Fix color test
1 parent 67214e9 commit d94ffa7

File tree

1 file changed

+2
-2
lines changed
  • tests/Plotly.NET.Tests/CommonAbstractions

1 file changed

+2
-2
lines changed

tests/Plotly.NET.Tests/CommonAbstractions/Colors.fs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -56,10 +56,10 @@ let ``Colors tests`` =
5656
testCase "fromColorScaleValues" (fun () ->
5757
let testColor =
5858
Color.fromColorScaleValues [
59-
1;2;3;4;5;6;3.4
59+
1;2;3;4;5;6
6060
]
6161
|> JsonConvert.SerializeObject
62-
Expect.equal testColor """[1,2,3,4,5,6,3.4]""" "Color.fromColorScaleValues not correctly serialized"
62+
Expect.equal testColor """[1,2,3,4,5,6]""" "Color.fromColorScaleValues not correctly serialized"
6363
)
6464
]
6565

0 commit comments

Comments
 (0)