diff --git a/Sources/TestProject1/TestGame.cs b/Sources/TestProject1/TestGame.cs index e3556ea..3486007 100644 --- a/Sources/TestProject1/TestGame.cs +++ b/Sources/TestProject1/TestGame.cs @@ -51,10 +51,10 @@ namespace Test { Game game = new("name", "description", 1111, new List {"1","2","3"}, "cover", "www.link.com"); - Assert.Equal(0, game.Year); + Assert.Equal(2023, game.Year); Game game2 = new("name", "description", 9999, new List {"1","2","3"}, "cover", "www.link.com"); - Assert.Equal(0, game2.Year); + Assert.Equal(2023, game2.Year); Game game3 = new("name", "description", 2012, new List {"1","2","3"}, "cover", "www.link.com"); Assert.Equal(2012, game3.Year);