1
0
Fork 0
mirror of https://github.com/ethauvin/JSON-java.git synced 2025-06-17 07:50:52 -07:00

fix expected exception message

This commit is contained in:
John J. Aylward 2017-06-21 18:28:04 -04:00
parent 3081b4bd96
commit 971614ac8b

View file

@ -98,7 +98,7 @@ public class JSONMLTest {
fail("Expecting an exception"); fail("Expecting an exception");
} catch (JSONException e) { } catch (JSONException e) {
assertEquals("Expecting an exception message", assertEquals("Expecting an exception message",
"Bad XML at 23 [character 24 line 1]", "Bad XML at 24 [character 25 line 1]",
e.getMessage()); e.getMessage());
} }
} }