diff --git a/src/WebCompilerTest/Compile/ScssTest.cs b/src/WebCompilerTest/Compile/ScssTest.cs index b6b5c8cf..add7abe0 100644 --- a/src/WebCompilerTest/Compile/ScssTest.cs +++ b/src/WebCompilerTest/Compile/ScssTest.cs @@ -35,7 +35,7 @@ public void CompileScss() var first = result.First(); Assert.IsTrue(File.Exists("../../artifacts/scss/test.css")); Assert.IsTrue(first.CompiledContent.Contains("/*# sourceMappingURL=data:")); - Assert.IsTrue(result.ElementAt(1).CompiledContent.Contains("url(foo.png)")); + Assert.IsTrue(result.ElementAt(1).CompiledContent.Contains("url(../foo.png)")); Assert.IsTrue(result.ElementAt(1).CompiledContent.Contains("-webkit-animation"), "AutoPrefix"); string sourceMap = DecodeSourceMap(first.CompiledContent);