Skip to content

Commit de36f26

Browse files
committed
Relax too strict size tests
1 parent c35381c commit de36f26

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Tests/Svg.UnitTests/LargeEmbeddedImageTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ namespace Svg.UnitTests
1414
public class LargeEmbeddedImageTest : SvgTestHelper
1515
{
1616
protected override string TestResource { get { return GetFullResourceString("Issue225_LargeUri.Speedometer.svg"); } }
17-
protected override int ExpectedSize { get { return 160000; } }
17+
protected override int ExpectedSize { get { return 150000; } }
1818

1919
[Test]
2020
public void TestImageIsRendered()

Tests/Svg.UnitTests/MetafileRenderingTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ namespace Svg.UnitTests
1818
public class MetafileRenderingTest : SvgTestHelper
1919
{
2020
protected override string TestResource { get { return GetFullResourceString("Issue210_Metafile.3DSceneSnapshotBIG.svg"); } }
21-
protected override int ExpectedSize { get { return 12500; } } //12896
21+
protected override int ExpectedSize { get { return 12000; } }
2222

2323
[Test]
2424
public void TestMetafileRendering()

0 commit comments

Comments
 (0)