aboutsummaryrefslogtreecommitdiff
path: root/Timeline.Tests/Helpers
diff options
context:
space:
mode:
Diffstat (limited to 'Timeline.Tests/Helpers')
-rw-r--r--Timeline.Tests/Helpers/AsyncFunctionAssertionsExtensions.cs2
-rw-r--r--Timeline.Tests/Helpers/HttpClientExtensions.cs2
-rw-r--r--Timeline.Tests/Helpers/ImageHelper.cs2
-rw-r--r--Timeline.Tests/Helpers/ParameterInfoAssertions.cs2
-rw-r--r--Timeline.Tests/Helpers/ReflectionHelper.cs2
-rw-r--r--Timeline.Tests/Helpers/ResponseAssertions.cs6
-rw-r--r--Timeline.Tests/Helpers/TestApplication.cs6
7 files changed, 11 insertions, 11 deletions
diff --git a/Timeline.Tests/Helpers/AsyncFunctionAssertionsExtensions.cs b/Timeline.Tests/Helpers/AsyncFunctionAssertionsExtensions.cs
index 516c34e9..b78309c0 100644
--- a/Timeline.Tests/Helpers/AsyncFunctionAssertionsExtensions.cs
+++ b/Timeline.Tests/Helpers/AsyncFunctionAssertionsExtensions.cs
@@ -4,7 +4,7 @@ using FluentAssertions.Specialized;
using System;
using System.Threading.Tasks;
-namespace TimelineApp.Tests.Helpers
+namespace Timeline.Tests.Helpers
{
public static class AsyncFunctionAssertionsExtensions
{
diff --git a/Timeline.Tests/Helpers/HttpClientExtensions.cs b/Timeline.Tests/Helpers/HttpClientExtensions.cs
index 952266b3..6513bbe7 100644
--- a/Timeline.Tests/Helpers/HttpClientExtensions.cs
+++ b/Timeline.Tests/Helpers/HttpClientExtensions.cs
@@ -6,7 +6,7 @@ using System.Net.Mime;
using System.Text;
using System.Threading.Tasks;
-namespace TimelineApp.Tests.Helpers
+namespace Timeline.Tests.Helpers
{
public static class HttpClientExtensions
{
diff --git a/Timeline.Tests/Helpers/ImageHelper.cs b/Timeline.Tests/Helpers/ImageHelper.cs
index ffbb38ae..9bed0917 100644
--- a/Timeline.Tests/Helpers/ImageHelper.cs
+++ b/Timeline.Tests/Helpers/ImageHelper.cs
@@ -3,7 +3,7 @@ using SixLabors.ImageSharp.Formats;
using SixLabors.ImageSharp.PixelFormats;
using System.IO;
-namespace TimelineApp.Tests.Helpers
+namespace Timeline.Tests.Helpers
{
public static class ImageHelper
{
diff --git a/Timeline.Tests/Helpers/ParameterInfoAssertions.cs b/Timeline.Tests/Helpers/ParameterInfoAssertions.cs
index a714f410..d3e5a41e 100644
--- a/Timeline.Tests/Helpers/ParameterInfoAssertions.cs
+++ b/Timeline.Tests/Helpers/ParameterInfoAssertions.cs
@@ -5,7 +5,7 @@ using FluentAssertions.Primitives;
using System;
using System.Reflection;
-namespace TimelineApp.Tests.Helpers
+namespace Timeline.Tests.Helpers
{
public class ParameterInfoValueFormatter : IValueFormatter
{
diff --git a/Timeline.Tests/Helpers/ReflectionHelper.cs b/Timeline.Tests/Helpers/ReflectionHelper.cs
index 16d68bb1..3f6036e3 100644
--- a/Timeline.Tests/Helpers/ReflectionHelper.cs
+++ b/Timeline.Tests/Helpers/ReflectionHelper.cs
@@ -1,7 +1,7 @@
using System.Linq;
using System.Reflection;
-namespace TimelineApp.Tests.Helpers
+namespace Timeline.Tests.Helpers
{
public static class ReflectionHelper
{
diff --git a/Timeline.Tests/Helpers/ResponseAssertions.cs b/Timeline.Tests/Helpers/ResponseAssertions.cs
index 4984d224..f01a0677 100644
--- a/Timeline.Tests/Helpers/ResponseAssertions.cs
+++ b/Timeline.Tests/Helpers/ResponseAssertions.cs
@@ -9,10 +9,10 @@ using System.Net.Http;
using System.Text;
using System.Text.Json;
using System.Text.Json.Serialization;
-using TimelineApp.Models.Converters;
-using TimelineApp.Models.Http;
+using Timeline.Models.Converters;
+using Timeline.Models.Http;
-namespace TimelineApp.Tests.Helpers
+namespace Timeline.Tests.Helpers
{
public class HttpResponseMessageValueFormatter : IValueFormatter
{
diff --git a/Timeline.Tests/Helpers/TestApplication.cs b/Timeline.Tests/Helpers/TestApplication.cs
index c655d337..52c2f2e2 100644
--- a/Timeline.Tests/Helpers/TestApplication.cs
+++ b/Timeline.Tests/Helpers/TestApplication.cs
@@ -6,10 +6,10 @@ using Microsoft.Extensions.DependencyInjection;
using System;
using System.Collections.Generic;
using System.IO;
-using TimelineApp.Entities;
-using TimelineApp.Migrations;
+using Timeline.Entities;
+using Timeline.Migrations;
-namespace TimelineApp.Tests.Helpers
+namespace Timeline.Tests.Helpers
{
public class TestApplication : IDisposable
{