@@ -106,7 +106,7 @@ public void LoadModsLogsWarningForOutOfDateMods() {
106106 var mod = Assert . Single ( usableMods ) ;
107107 Assert . Equal ( new ( "Outdated Mod" , Path . Combine ( TestFilesPath , "mod" , "outdated" ) ) , mod ) ;
108108 var consoleOutput = output . ToString ( ) ;
109- Assert . Contains ( "[WARN] \t \t Mod [Outdated Mod] supports game version 1.30.*, but the installed version is 1.31. " +
109+ Assert . Contains ( "[WARN] \t \t Mod [Outdated Mod] supports game version 1.30.*, but your game version is 1.31. " +
110110 "Proceeding anyway, but this can cause issues." , consoleOutput ) ;
111111 }
112112
@@ -120,7 +120,7 @@ public void LoadModsThrowsForGrosslyOutOfDateModsWhenConfigured() {
120120 modLoader . LoadMods ( TestFilesPath , incomingMods , installedGameVersion , throwForOutOfDateMods : true )
121121 ) ;
122122
123- Assert . Equal ( "\t \t Mod [Outdated Mod] supports game version 1.30.*, but the installed version is 1.31. Cannot continue." , exception . Message ) ;
123+ Assert . Equal ( "\t \t Mod [Outdated Mod] supports game version 1.30.*, but your game version is 1.31. Cannot continue." , exception . Message ) ;
124124 }
125125
126126 [ Fact ]
@@ -141,7 +141,7 @@ public void LoadModsLogWarningForSlightlyOutOfDateMods() {
141141
142142 // Check if the warning is logged, but should not throw as it's only slightly out of date.
143143 var consoleOutput = output . ToString ( ) ;
144- Assert . Contains ( "[WARN] \t \t Mod [Slightly Outdated Mod] supports game version 1.31.0.*, but the installed version is 1.31.1. " +
144+ Assert . Contains ( "[WARN] \t \t Mod [Slightly Outdated Mod] supports game version 1.31.0.*, but your game version is 1.31.1. " +
145145 "Proceeding anyway, but this can cause issues." , consoleOutput ) ;
146146 }
147147
0 commit comments