Skip to content
Snippets Groups Projects
Commit 1d48e2e8 authored by brinn's avatar brinn
Browse files

fix: unit test (related to changing the error message in AbstractParserObjectFactory)

SVN: 1527
parent 18c9a1ce
No related branches found
No related tags found
No related merge requests found
...@@ -69,7 +69,7 @@ public final class AbstractParserObjectFactoryTest ...@@ -69,7 +69,7 @@ public final class AbstractParserObjectFactoryTest
fail("Following properties '[isnotin]' are not part of 'Bean'."); fail("Following properties '[isnotin]' are not part of 'Bean'.");
} catch (UserFailureException ex) } catch (UserFailureException ex)
{ {
assertEquals("Following properties '[isnotin]' are not part of 'Bean'.", ex.getMessage()); assertEquals("The following header columns are not part of 'Bean': 'isnotin'", ex.getMessage());
} }
} }
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment