Skip to content

Commit

Permalink
HV-1174 Fix typos in method names of a couple of tests
Browse files Browse the repository at this point in the history
  • Loading branch information
gsmet committed Dec 1, 2016
1 parent 9cdfd01 commit 4eaf0f8
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
Expand Up @@ -27,7 +27,7 @@ public void executableAsStringShouldReturnMethodNameWithBracesForParameterlessMe
}

@Test
public void executableAsStringShouldReturnMethodNameWithSimpleParamerTypeNames() throws Exception {
public void executableAsStringShouldReturnMethodNameWithSimpleParameterTypeNames() throws Exception {
assertEquals(
new ExecutableFormatter( Bar.class.getMethod( "zap", int.class, Date.class ) ).toString(),
"Bar#zap(int, Date)"
Expand Down
Expand Up @@ -216,7 +216,7 @@ public void executableAsStringShouldReturnMethodNameWithBracesForParameterlessMe
}

@Test
public void executableAsStringShouldReturnMethodNameWithSimpleParamerTypeNames() throws Exception {
public void executableAsStringShouldReturnMethodNameWithSimpleParameterTypeNames() throws Exception {
assertEquals( ExecutableHelper.getExecutableAsString( "foo", int.class, Foo.class ), "foo(int, Foo)" );
}

Expand Down

0 comments on commit 4eaf0f8

Please sign in to comment.