Skip to content

Commit

Permalink
Fixed unit tests broken by adding BatchCompilerException
Browse files Browse the repository at this point in the history
  • Loading branch information
RobertTheGrey committed Jan 29, 2011
1 parent 5500dbb commit e5faaec
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/Spark.Tests/Compiler/CSharpViewCompilerTester.cs
Expand Up @@ -148,7 +148,7 @@ public void TargetNamespace()
}


[Test, ExpectedException(typeof(CompilerException))]
[Test, ExpectedException(typeof(BatchCompilerException))]
public void ProvideFullException()
{
var compiler = new CSharpViewCompiler { BaseClass = "Spark.SparkViewBase" };
Expand Down
2 changes: 1 addition & 1 deletion src/Spark.Tests/Compiler/VisualBasicViewCompilerTester.cs
Expand Up @@ -237,7 +237,7 @@ public void TargetNamespace()
}


[Test, ExpectedException(typeof(CompilerException))]
[Test, ExpectedException(typeof(BatchCompilerException))]
public void ProvideFullException()
{
var compiler = new VisualBasicViewCompiler { BaseClass = "Spark.AbstractSparkView" };
Expand Down

0 comments on commit e5faaec

Please sign in to comment.