Index: Migration/Scripts/test/Migration.Scripts.Data.Test/UpgradeScriptTest.cs =================================================================== diff -u -r9e9976818f1b446948c3bf815cafe2e023f98ac1 -re93ca434037205455b9fa33353b2c8c73d4f3baa --- Migration/Scripts/test/Migration.Scripts.Data.Test/UpgradeScriptTest.cs (.../UpgradeScriptTest.cs) (revision 9e9976818f1b446948c3bf815cafe2e023f98ac1) +++ Migration/Scripts/test/Migration.Scripts.Data.Test/UpgradeScriptTest.cs (.../UpgradeScriptTest.cs) (revision e93ca434037205455b9fa33353b2c8c73d4f3baa) @@ -1,4 +1,4 @@ -// Copyright (C) Stichting Deltares 2022. All rights reserved. +// Copyright (C) Stichting Deltares and State of the Netherlands 2023. All rights reserved. // // This file is part of Riskeer. // @@ -81,7 +81,7 @@ var upgradeScript = new TestUpgradeScript(fromVersion, toVersion); // Call - TestDelegate call = () => upgradeScript.Upgrade(sourceFilePath, "Filepath.ext"); + TestDelegate call = () => upgradeScript.Upgrade(sourceFilePath, "filePath.ext"); // Assert var exception = Assert.Throws(call); @@ -100,7 +100,7 @@ var upgradeScript = new TestUpgradeScript(fromVersion, toVersion); // Call - TestDelegate call = () => upgradeScript.Upgrade("Filepath.ext", targetFilePath); + TestDelegate call = () => upgradeScript.Upgrade("filePath.ext", targetFilePath); // Assert var exception = Assert.Throws(call);