mirror of
https://github.com/OrchardCMS/Orchard.git
synced 2025-10-14 10:54:50 +08:00
Correcting http://orchardqa.codeplex.com/workitem/116
- Removed Orchard.Mvc.NotFoundResult, replaced by the new MVC HttpNotFoundViewResult --HG-- branch : dev
This commit is contained in:
@@ -17,7 +17,6 @@ using Orchard.Core.Feeds.Models;
|
||||
using Orchard.Core.Feeds.Rss;
|
||||
using Orchard.Core.Feeds.StandardBuilders;
|
||||
using Orchard.Core.Routable.Models;
|
||||
using Orchard.Mvc.Results;
|
||||
using Orchard.Tests.Modules;
|
||||
using Orchard.Tests.Stubs;
|
||||
|
||||
@@ -36,7 +35,7 @@ namespace Orchard.Core.Tests.Feeds.Controllers {
|
||||
|
||||
var result = controller.Index("no-such-format");
|
||||
Assert.That(result, Is.Not.Null);
|
||||
Assert.That(result, Is.TypeOf<NotFoundResult>());
|
||||
Assert.That(result, Is.TypeOf<HttpNotFoundResult>());
|
||||
}
|
||||
|
||||
[Test]
|
||||
|
Reference in New Issue
Block a user