diff --git a/pkhex/pkhex-egglocke-tests/pkhex-egglocke-tests/testConstants.cs b/pkhex/pkhex-egglocke-tests/pkhex-egglocke-tests/testConstants.cs index 80184ff..78f0ee9 100644 --- a/pkhex/pkhex-egglocke-tests/pkhex-egglocke-tests/testConstants.cs +++ b/pkhex/pkhex-egglocke-tests/pkhex-egglocke-tests/testConstants.cs @@ -10,12 +10,12 @@ namespace pkhexEgglockeTests public static class testConstants { // Gen 4 - Soul Silver Blank Save File - public static string BLANK_SOULSILVER_SAVE => Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), @"testSources\emptySoulSilver.sav"); + public static string BLANK_SOULSILVER_SAVE => Path.Combine(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), @"testSources"), "emptySoulSilver.sav"); public static string BLANK_SOULSILVER_OT_STRING => "Egg"; // Gen 6 - Omega Ruby Save File - public static string BLANK_OMEGARUBY_SAVE => Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), @"testSources\emptyOmegaRuby.sav"); + public static string BLANK_OMEGARUBY_SAVE => Path.Combine(Path.Combine(Path.GetDirectoryName(Assembly.GetExecutingAssembly().Location), @"testSources"), "emptyOmegaRuby.sav"); }