Skip to content

Commit 6cb79ea

Browse files
committed
.net versioning sucks sometimes
1 parent f420b1f commit 6cb79ea

2 files changed

Lines changed: 2 additions & 3 deletions

File tree

tests/Plotly.NET.CSharp.Tests/Plotly.NET.CSharp.Tests.csproj

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -2,7 +2,6 @@
22

33
<PropertyGroup>
44
<TargetFramework>net6.0</TargetFramework>
5-
<LangVersion>11.0</LangVersion>
65
<IsPackable>false</IsPackable>
76
</PropertyGroup>
87

tests/Plotly.NET.CSharp.Tests/htmlcodegen/SimpleTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -38,7 +38,7 @@ public void ExpectingData()
3838
{
3939
TestUtils.ChartGeneratedContains(
4040
simpleChart,
41-
"""var data = [{"type":"scatter","mode":"markers","x":[0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0],"y":[0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0],"marker":{},"line":{}}];"""
41+
"var data = [{\"type\":\"scatter\",\"mode\":\"markers\",\"x\":[0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0],\"y\":[0.0,1.0,2.0,3.0,4.0,5.0,6.0,7.0,8.0,9.0,10.0],\"marker\":{},\"line\":{}}];"
4242
);
4343
}
4444

@@ -47,7 +47,7 @@ public void ExpectingLayoutInfo()
4747
{
4848
TestUtils.ChartGeneratedContains(
4949
simpleChart,
50-
"""var layout = {"xaxis":{"title":{"text":"xAxis"}},"yaxis":{"title":{"text":"yAxis"}}};"""
50+
"var layout = {\"xaxis\":{\"title\":{\"text\":\"xAxis\"}},\"yaxis\":{\"title\":{\"text\":\"yAxis\"}}};"
5151
);
5252
}
5353

0 commit comments

Comments
 (0)