Chromium Code Reviews
chromiumcodereview-hr@appspot.gserviceaccount.com (chromiumcodereview-hr) | Please choose your nickname with Settings | Help | Chromium Project | Gerrit Changes | Sign out
(259)

Unified Diff: visual_studio/NativeClientVSAddIn/UnitTests/PropertyManagerTest.cs

Issue 10826232: NaCl VS Add-in User Changed Properties Fix (Closed) Base URL: https://nativeclient-sdk.googlecode.com/svn/trunk/src
Patch Set: Created 8 years, 4 months ago
Use n/p to move between diff chunks; N/P to move between comments. Draft comments are only viewable by you.
Jump to:
View side-by-side diff with in-line comments
Download patch
Index: visual_studio/NativeClientVSAddIn/UnitTests/PropertyManagerTest.cs
diff --git a/visual_studio/NativeClientVSAddIn/UnitTests/PropertyManagerTest.cs b/visual_studio/NativeClientVSAddIn/UnitTests/PropertyManagerTest.cs
index 915a4a0c1b0d24895500bd99b67ac7dbcb772a5f..05b129700cc8c124f8078a2c8a148f60d4227114 100644
--- a/visual_studio/NativeClientVSAddIn/UnitTests/PropertyManagerTest.cs
+++ b/visual_studio/NativeClientVSAddIn/UnitTests/PropertyManagerTest.cs
@@ -198,9 +198,9 @@ namespace UnitTests
Assert.AreEqual(outputDir, target.OutputDirectory, "OutputDirectory.");
Assert.AreEqual(assembly, target.PluginAssembly, "PluginAssembly.");
Assert.AreEqual(
- @"win_x86_newlib",
- target.GetProperty("ConfigurationGeneral", "PlatformToolset"),
- "GetProperty() with PlatformToolset incorrect.");
+ @"newlib",
+ target.GetProperty("ConfigurationGeneral", "ToolchainName"),
+ "GetProperty() with ToolchainName incorrect.");
}
/// <summary>

Powered by Google App Engine
This is Rietveld 408576698