Skip to content

Commit dd0af47

Browse files
committed
fix test failures
1 parent 89a5db4 commit dd0af47

2 files changed

Lines changed: 5 additions & 1 deletion

File tree

tests/ImageSharp.Tests/ImageSharp.Drawing.Tests.csproj

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,9 @@
2929
<None Update="TestFonts\*.ttf">
3030
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
3131
</None>
32+
<None Update="TestFonts\SixLaborsSampleAB.woff">
33+
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
34+
</None>
3235
<None Update="xunit.runner.json">
3336
<CopyToOutputDirectory>PreserveNewest</CopyToOutputDirectory>
3437
</None>

tests/ImageSharp.Tests/Shapes/ComplexPolygonTests.cs

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -190,7 +190,8 @@ public void SmallRingAtLargeCoords_HorizontalScansShouldFind4IntersectionPoints(
190190

191191
if (badPositions.Count > 0)
192192
{
193-
string badPoz = string.Join(',', badPositions);
193+
// The char overload is causing mysterious build failures in Visual Studio
194+
string badPoz = string.Join(",", badPositions);
194195
this.Output.WriteLine($"BAD: {badPositions.Count} of {yMax - yMin}: {badPoz}");
195196

196197
Assert.True(false);

0 commit comments

Comments
 (0)