Index: visual_studio/NativeClientVSAddIn/UnitTests/CompileTest.cs |
diff --git a/visual_studio/NativeClientVSAddIn/UnitTests/CompileTest.cs b/visual_studio/NativeClientVSAddIn/UnitTests/CompileTest.cs |
index dc301c1da92e5486560809b89d8663db2b405908..629ce3efe767498f41584ae4690033802d30346c 100644 |
--- a/visual_studio/NativeClientVSAddIn/UnitTests/CompileTest.cs |
+++ b/visual_studio/NativeClientVSAddIn/UnitTests/CompileTest.cs |
@@ -38,7 +38,7 @@ namespace UnitTests |
[TestMethod] |
public void CheckNaCl64Compile() |
{ |
- CheckCompile(Strings.NaCl64PlatformName, false); |
+ CheckCompile(Strings.NaCl64PlatformName); |
} |
/// <summary> |
@@ -52,7 +52,7 @@ namespace UnitTests |
{ |
Assert.Inconclusive(); |
} |
- CheckCompile(Strings.NaClARMPlatformName, false); |
+ CheckCompile(Strings.NaClARMPlatformName); |
} |
/// <summary> |
@@ -61,7 +61,7 @@ namespace UnitTests |
[TestMethod] |
public void CheckPepperCompile() |
{ |
- CheckCompile(Strings.PepperPlatformName, true); |
+ CheckCompile(Strings.PepperPlatformName); |
} |
/// <summary> |
@@ -75,7 +75,7 @@ namespace UnitTests |
{ |
Assert.Inconclusive(); |
} |
- CheckCompile(Strings.PNaClPlatformName, false); |
+ CheckCompile(Strings.PNaClPlatformName); |
} |
} |