We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9efcaf3 commit be30844Copy full SHA for be30844
test/System.Web.Mvc.Test/Test/RequireHttpsAttributeTest.cs
@@ -64,10 +64,10 @@ public void OnAuthorizationRedirectsIfRequestIsNotSecureAndMethodIsGet()
64
RedirectResult result = authContext.Result as RedirectResult;
65
66
// Assert
67
- Assert.IsFalse(attr.Permanent);
+ Assert.False(attr.Permanent);
68
Assert.NotNull(result);
69
Assert.Equal("https://www.example.com/alpha/bravo/charlie?q=quux", result.Url);
70
- Assert.IsFalse(result.Permanent);
+ Assert.False(result.Permanent);
71
}
72
73
[Theory]
0 commit comments