Updated unit test.

This commit is contained in:
Eric Fontana
2014-08-11 06:52:33 -04:00
parent 41a64718f8
commit ab6499bfba

View File

@@ -67,8 +67,9 @@ namespace TimberWinR.UnitTests
Configuration c = Configuration.FromString(grokJson);
Assert.IsTrue(false, "Should have thrown an exception");
}
catch (TimberWinR.Parser.Grok.GrokAddTagException)
catch (TimberWinR.Parser.Grok.GrokAddTagException ex)
{
Assert.AreEqual(ex.Message, "Grok filter add_tag requires tuples");
}
}