File tree 1 file changed +3
-3
lines changed
tests/Plotly.NET.ImageExport.Tests
1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -48,13 +48,13 @@ let ``Image export tests`` =
48
48
testBase64PNG
49
49
" Invalid base64 string for Chart.toBase64PNGStringAsync"
50
50
}
51
- testCase " Chart.toBase64JPGString terminates" <| fun () ->
51
+ ptestCase " Chart.toBase64JPGString terminates" <| fun () ->
52
52
let actual = Chart.Point([ 1. , 1. ]) |> Chart.toBase64JPGString()
53
53
Expect.isTrue ( actual.Length > 100 ) " "
54
- testCase " Chart.toBase64PNGString terminates" <| fun () ->
54
+ ptestCase " Chart.toBase64PNGString terminates" <| fun () ->
55
55
let actual = Chart.Point([ 1. , 1. ]) |> Chart.toBase64PNGString()
56
56
Expect.isTrue ( actual.Length > 100 ) " "
57
- testCase " Chart.toSVGString terminates" <| fun () ->
57
+ ptestCase " Chart.toSVGString terminates" <| fun () ->
58
58
let actual = Chart.Point([ 1. , 1. ]) |> Chart.toSVGString()
59
59
Expect.isTrue ( actual.Length > 100 ) " "
60
60
]
You can’t perform that action at this time.
0 commit comments