Skip to content

Commit cf605f9

Browse files
committed
Replaced verbatim string literal with a regular one.
1 parent a85d7a2 commit cf605f9

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

TestStack.FluentMvcTesting/ControllerResultTest.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -425,7 +425,7 @@ public ContentResult ShouldReturnContent(string content = null, string contentTy
425425
throw new ActionResultAssertionException(string.Format(
426426
"Expected encoding to be equal to {0}, but instead was {1}.",
427427
encoding.EncodingName,
428-
contentResult.ContentEncoding != null ? contentResult.ContentEncoding.EncodingName : @"null"));
428+
contentResult.ContentEncoding != null ? contentResult.ContentEncoding.EncodingName : "null"));
429429
}
430430

431431
return contentResult;

0 commit comments

Comments
 (0)