From 5d371017608ed446030dd6f311aef939a40668de Mon Sep 17 00:00:00 2001 From: Praburaj Date: Wed, 1 Apr 2015 13:59:57 -0700 Subject: [PATCH] Fixing namespaces. My VS build succeeds even without this change. On CI it seems to fail. --- test/MusicStore.Test/CheckoutControllerTest.cs | 2 +- test/MusicStore.Test/ShoppingCartControllerTest.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/test/MusicStore.Test/CheckoutControllerTest.cs b/test/MusicStore.Test/CheckoutControllerTest.cs index 43ec621..aab537c 100644 --- a/test/MusicStore.Test/CheckoutControllerTest.cs +++ b/test/MusicStore.Test/CheckoutControllerTest.cs @@ -9,10 +9,10 @@ using Microsoft.AspNet.Http.Core; using Microsoft.AspNet.Http.Core.Collections; using Microsoft.AspNet.Mvc; using Microsoft.AspNet.Session; -using Microsoft.AspNet.Testing.Logging; using Microsoft.Framework.Caching.Distributed; using Microsoft.Framework.Caching.Memory; using Microsoft.Framework.DependencyInjection; +using Microsoft.Framework.Logging.Testing; using MusicStore.Models; using Xunit; diff --git a/test/MusicStore.Test/ShoppingCartControllerTest.cs b/test/MusicStore.Test/ShoppingCartControllerTest.cs index 9d27d7b..99e9f80 100644 --- a/test/MusicStore.Test/ShoppingCartControllerTest.cs +++ b/test/MusicStore.Test/ShoppingCartControllerTest.cs @@ -7,10 +7,10 @@ using Microsoft.AspNet.Http; using Microsoft.AspNet.Http.Core; using Microsoft.AspNet.Mvc; using Microsoft.AspNet.Session; -using Microsoft.AspNet.Testing.Logging; using Microsoft.Framework.Caching.Distributed; using Microsoft.Framework.Caching.Memory; using Microsoft.Framework.DependencyInjection; +using Microsoft.Framework.Logging.Testing; using MusicStore.Models; using MusicStore.ViewModels; using Xunit;