Skip to content

Commit ba7b1df

Browse files
committed
Fix path to test data
1 parent 15756ef commit ba7b1df

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/ImageSharp.Tests/Formats/WebP/Vp8ResidualTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,7 +24,7 @@ public void GetResidualCost_Works()
2424
// arrange
2525
int ctx0 = 0;
2626
int expected = 20911;
27-
string jsonString = File.ReadAllText(@"TestDataWebp\Vp8Residual.json");
27+
string jsonString = File.ReadAllText(Path.Combine("TestDataWebp", "Vp8Residual.json"));
2828
Vp8Residual residual = JsonSerializer.Deserialize<Vp8Residual>(jsonString);
2929

3030
// act

0 commit comments

Comments
 (0)