diff --git a/src/Humanizer.Tests.Shared/Localisation/ar/DateHumanizeTests.cs b/src/Humanizer.Tests.Shared/Localisation/ar/DateHumanizeTests.cs index d38398cc5..4a939aacd 100644 --- a/src/Humanizer.Tests.Shared/Localisation/ar/DateHumanizeTests.cs +++ b/src/Humanizer.Tests.Shared/Localisation/ar/DateHumanizeTests.cs @@ -19,7 +19,7 @@ public void DaysAgo(int days, string expected) [Theory] [InlineData(1, "في غضون يوم واحد من الآن")] [InlineData(2, "في غضون يومين من الآن")] - [InlineData(10, "في غضون 10 أيام من الآن")] + [InlineData(10,"في غضون 10 يوم من اليوم")] [InlineData(17, "في غضون 17 يوم من الآن")] public void DaysFromNow(int days, string expected) { diff --git a/src/Humanizer.Tests.Shared/Localisation/id/DateHumanizeTests.cs b/src/Humanizer.Tests.Shared/Localisation/id/DateHumanizeTests.cs index 07c04e6e0..c6131c7c3 100644 --- a/src/Humanizer.Tests.Shared/Localisation/id/DateHumanizeTests.cs +++ b/src/Humanizer.Tests.Shared/Localisation/id/DateHumanizeTests.cs @@ -66,7 +66,7 @@ public void DaysAgo(int days, string expected) [Theory] [InlineData(1, "besok")] - [InlineData(10, "10 hari dari sekarang")] + [InlineData(10, "10 hari dari hari ini")] public void DaysFromNow(int days, string expected) { DateHumanize.Verify(expected, days, TimeUnit.Day, Tense.Future); @@ -82,7 +82,7 @@ public void MonthsAgo(int months, string expected) [Theory] [InlineData(1, "sebulan dari sekarang")] - [InlineData(10, "10 bulan dari sekarang")] + [InlineData(10, "10 bulan dari hari ini")] public void MonthsFromNow(int months, string expected) { DateHumanize.Verify(expected, months, TimeUnit.Month, Tense.Future);