Updated Branches: refs/heads/sandbox/bookmarkable-callback-url 1ec0b8b36 -> f222fac11
WICKET-4932: typo Project: http://git-wip-us.apache.org/repos/asf/wicket/repo Commit: http://git-wip-us.apache.org/repos/asf/wicket/commit/f222fac1 Tree: http://git-wip-us.apache.org/repos/asf/wicket/tree/f222fac1 Diff: http://git-wip-us.apache.org/repos/asf/wicket/diff/f222fac1 Branch: refs/heads/sandbox/bookmarkable-callback-url Commit: f222fac11cecf4fb7a70e214ff754080dc458377 Parents: 1ec0b8b Author: Pedro Santos <[email protected]> Authored: Thu Jan 10 15:27:55 2013 -0200 Committer: Pedro Santos <[email protected]> Committed: Thu Jan 10 15:27:55 2013 -0200 ---------------------------------------------------------------------- .../mapper/AbstractBookmarkableMapperTest.java | 6 +++--- 1 files changed, 3 insertions(+), 3 deletions(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/wicket/blob/f222fac1/wicket-core/src/test/java/org/apache/wicket/request/mapper/AbstractBookmarkableMapperTest.java ---------------------------------------------------------------------- diff --git a/wicket-core/src/test/java/org/apache/wicket/request/mapper/AbstractBookmarkableMapperTest.java b/wicket-core/src/test/java/org/apache/wicket/request/mapper/AbstractBookmarkableMapperTest.java index 705f14c..5a63991 100644 --- a/wicket-core/src/test/java/org/apache/wicket/request/mapper/AbstractBookmarkableMapperTest.java +++ b/wicket-core/src/test/java/org/apache/wicket/request/mapper/AbstractBookmarkableMapperTest.java @@ -65,7 +65,7 @@ public class AbstractBookmarkableMapperTest extends WicketTestCase /** */ @Test - public void itDoenstEndodesBookmarkableInfoForCallbacksInNonBookmarkablePages() + public void itDoenstEncodesBookmarkableInfoForCallbacksInNonBookmarkablePages() { assertThat(mapper.mapHandler(anInterfaceHandlerFor(new NonBookmarkablePage(1))), nullValue()); @@ -80,7 +80,7 @@ public class AbstractBookmarkableMapperTest extends WicketTestCase } /** - * An non bookmarkable page since there's no default constructor + * A non bookmarkable page since there's no default constructor */ public static class NonBookmarkablePage extends MockPage { @@ -96,7 +96,7 @@ public class AbstractBookmarkableMapperTest extends WicketTestCase } /** - * An bookmarkable page since there's a default constructor + * A bookmarkable page since there's a default constructor */ public static class BookmarkablePage extends MockPage {
