Index: Migration/Scripts/test/Migration.Scripts.Data.Test/UpgradeScriptTest.cs =================================================================== diff -u -r85ff91388190d242a5bd74e110b2c5f8b177bff3 -r923413bfa0a6c81e2b0931c5b1e156dc8253328f --- Migration/Scripts/test/Migration.Scripts.Data.Test/UpgradeScriptTest.cs (.../UpgradeScriptTest.cs) (revision 85ff91388190d242a5bd74e110b2c5f8b177bff3) +++ Migration/Scripts/test/Migration.Scripts.Data.Test/UpgradeScriptTest.cs (.../UpgradeScriptTest.cs) (revision 923413bfa0a6c81e2b0931c5b1e156dc8253328f) @@ -84,7 +84,7 @@ TestDelegate call = () => upgradeScript.Upgrade(sourceFilePath, "Filepath.ext"); // Assert - ArgumentException exception = Assert.Throws(call); + var exception = Assert.Throws(call); Assert.AreEqual("sourceLocation", exception.ParamName); } @@ -103,7 +103,7 @@ TestDelegate call = () => upgradeScript.Upgrade("Filepath.ext", targetFilePath); // Assert - ArgumentException exception = Assert.Throws(call); + var exception = Assert.Throws(call); Assert.AreEqual("targetLocation", exception.ParamName); } }