From 1b58b0da7b094387f0ab56e7c095957efd809b74 Mon Sep 17 00:00:00 2001 From: Ahmed-Ghanam Date: Fri, 29 Nov 2024 08:54:57 +0100 Subject: [PATCH] Remove two unnecessary values. --- .../TestingServices/SmsNotificationServiceTests.cs | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Altinn.Notifications.Tests/Notifications.Core/TestingServices/SmsNotificationServiceTests.cs b/test/Altinn.Notifications.Tests/Notifications.Core/TestingServices/SmsNotificationServiceTests.cs index e3d72b0f..8d0f658d 100644 --- a/test/Altinn.Notifications.Tests/Notifications.Core/TestingServices/SmsNotificationServiceTests.cs +++ b/test/Altinn.Notifications.Tests/Notifications.Core/TestingServices/SmsNotificationServiceTests.cs @@ -23,7 +23,7 @@ namespace Altinn.Notifications.Tests.Notifications.Core.TestingServices; public class SmsNotificationServiceTests { private const string _smsQueueTopicName = "test.sms.queue"; - private readonly Sms _sms = new(Guid.NewGuid(), "Altinn Test", "Recipient", "Text message", "10825795702 ", "310679941"); + private readonly Sms _sms = new(Guid.NewGuid(), "Altinn Test", "Recipient", "Text message"); [Fact] public async Task CreateNotifications_NewSmsNotification_RepositoryCalledOnce()