From 0e31f3c15531673b0e6d4931dac7c0e4463fbd8d Mon Sep 17 00:00:00 2001 From: anperederi Date: Sat, 16 Mar 2024 19:48:34 +0100 Subject: [PATCH] =?UTF-8?q?=F0=9F=A7=AA=20Test?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- src/Tests/UnitTestsModel/ActivityTest.cs | 2 +- src/Tests/UnitTestsModel/DataSource.cs | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/src/Tests/UnitTestsModel/ActivityTest.cs b/src/Tests/UnitTestsModel/ActivityTest.cs index fbc9776..a5393ca 100644 --- a/src/Tests/UnitTestsModel/ActivityTest.cs +++ b/src/Tests/UnitTestsModel/ActivityTest.cs @@ -248,7 +248,7 @@ namespace UnitTestsModel Console.WriteLine(result); - Assert.Equal($"Activity #1: Running on {date:d/M/yyyy} from {date.AddHours(1):HH:mm:ss} to {date.AddHours(2):HH:mm:ss} with an effort of 3/5 and an average temperature of 25,5°C and a heart rate variability of 0,5 bpm and a variance of 0,3 bpm and a standard deviation of 0,2 bpm and an average of 150 bpm and a maximum of 180 bpm and a minimum of 120 bpm and auto pause is disabled.", result); + Assert.Equal($"Activity #1: Running on {date:d/M/yyyy} from {date.AddHours(1):HH:mm:ss} to {date.AddHours(2):HH:mm:ss} with an effort of 3/5 and an average temperature of 25.5°C and a heart rate variability of 0,5 bpm and a variance of 0,3 bpm and a standard deviation of 0,2 bpm and an average of 150 bpm and a maximum of 180 bpm and a minimum of 120 bpm and auto pause is disabled.", result); } } } \ No newline at end of file diff --git a/src/Tests/UnitTestsModel/DataSource.cs b/src/Tests/UnitTestsModel/DataSource.cs index 041496f..503d3a2 100644 --- a/src/Tests/UnitTestsModel/DataSource.cs +++ b/src/Tests/UnitTestsModel/DataSource.cs @@ -35,7 +35,7 @@ namespace Model.Tests var result = dataSource.ToString(); - Assert.Equal("DataSource #0: Type Model with a precision of 0,1", result); + Assert.Equal("DataSource #0: Type Model with a precision of 0.1", result); } } }