Skip to content

Commit 070b201

Browse files
committed
Update tests due to bumped cache version
1 parent dd75222 commit 070b201

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/React.Tests/Core/FileCacheHashTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -55,7 +55,7 @@ public void ValidateHashShouldReturnFalseWhenHashDoesNotMatch()
5555
public void ValidateHashShouldReturnTrueWhenHashMatches()
5656
{
5757
var hash = new FileCacheHash();
58-
Assert.IsTrue(hash.ValidateHash("// @hash v2-" + SAMPLE_HASH + "\nHello World", SAMPLE_HASH));
58+
Assert.IsTrue(hash.ValidateHash("// @hash v3-" + SAMPLE_HASH + "\nHello World", SAMPLE_HASH));
5959
}
6060
}
6161
}

src/React.Tests/Core/JsxTransformerTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -71,7 +71,7 @@ public void ShouldWrapExceptionsInJsxExeption()
7171
[Test]
7272
public void ShouldUseCacheProvider()
7373
{
74-
_cache.Setup(x => x.Get<JavaScriptWithSourceMap>("JSX_v2_foo.jsx", null)).Returns(new JavaScriptWithSourceMap
74+
_cache.Setup(x => x.Get<JavaScriptWithSourceMap>("JSX_v3_foo.jsx", null)).Returns(new JavaScriptWithSourceMap
7575
{
7676
Code = "/* cached */"
7777
});

0 commit comments

Comments
 (0)