Correct assertion method in prior commit

This commit is contained in:
Doug Bunting 2015-02-12 21:24:23 -08:00
Родитель 9efcaf3315
Коммит be3084402b
1 изменённых файлов: 2 добавлений и 2 удалений

Просмотреть файл

@ -64,10 +64,10 @@ namespace System.Web.Mvc.Test
RedirectResult result = authContext.Result as RedirectResult;
// Assert
Assert.IsFalse(attr.Permanent);
Assert.False(attr.Permanent);
Assert.NotNull(result);
Assert.Equal("https://www.example.com/alpha/bravo/charlie?q=quux", result.Url);
Assert.IsFalse(result.Permanent);
Assert.False(result.Permanent);
}
[Theory]