diff options
author | Jiri Vanek <[email protected]> | 2013-09-18 15:46:55 +0200 |
---|---|---|
committer | Jiri Vanek <[email protected]> | 2013-09-18 15:46:55 +0200 |
commit | 69c42197274a390fa8e364941c6e28a0a09a6d36 (patch) | |
tree | 9f5d8322933c81ce97438cfca2a29fce7fee3de3 /tests | |
parent | 7e448332cb76913da7901ee831f5855755358347 (diff) |
Fixed minor typo in JEditorPaneBasedExceptionDialogTest (mus -> must) severla times
"message from dialog mus be same as pattern" -> "message from dialog must be same as pattern"
Diffstat (limited to 'tests')
-rw-r--r-- | tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/JEditorPaneBasedExceptionDialogTest.java | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/JEditorPaneBasedExceptionDialogTest.java b/tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/JEditorPaneBasedExceptionDialogTest.java index 877596a..8f47783 100644 --- a/tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/JEditorPaneBasedExceptionDialogTest.java +++ b/tests/netx/unit/net/sourceforge/jnlp/splashscreen/parts/JEditorPaneBasedExceptionDialogTest.java @@ -132,10 +132,10 @@ public class JEditorPaneBasedExceptionDialogTest { JEditorPaneBasedExceptionDialog d2 = new JEditorPaneBasedExceptionDialog(null, false, ex, ec, null); JEditorPaneBasedExceptionDialog d3 = new JEditorPaneBasedExceptionDialog(null, false, ex, null, ai); JEditorPaneBasedExceptionDialog d4 = new JEditorPaneBasedExceptionDialog(null, false, null, ec, ai); - Assert.assertTrue("message from dialog mus be same as pattern", d1.getMessage().equals(s1)); - Assert.assertTrue("message from dialog mus be same as pattern", d2.getMessage().equals(s2)); - Assert.assertTrue("message from dialog mus be same as pattern", d3.getMessage().equals(s3)); - Assert.assertTrue("message from dialog mus be same as pattern", d4.getMessage().equals(s4)); + Assert.assertTrue("message from dialog must be same as pattern", d1.getMessage().equals(s1)); + Assert.assertTrue("message from dialog must be same as pattern", d2.getMessage().equals(s2)); + Assert.assertTrue("message from dialog must be same as pattern", d3.getMessage().equals(s3)); + Assert.assertTrue("message from dialog must be same as pattern", d4.getMessage().equals(s4)); } |