Skip to content

Commit

Permalink
Fix typos
Browse files Browse the repository at this point in the history
  • Loading branch information
Godin committed Dec 5, 2017
1 parent e1502d1 commit 00f06ec
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -695,7 +695,7 @@ public void try_catch_should_create_3_probes() {
} }


@Test @Test
public void try_catch_should_should_show_missed_when_no_probes_are_executed() { public void try_catch_should_show_missed_when_no_probes_are_executed() {
createTryCatchBlock(); createTryCatchBlock();
runMethodAnalzer(); runMethodAnalzer();


Expand All @@ -705,7 +705,7 @@ public void try_catch_should_should_show_missed_when_no_probes_are_executed() {
} }


@Test @Test
public void try_catch_should_should_show_exception_handler_missed_when_probe_is_not_executed() { public void try_catch_should_show_exception_handler_missed_when_probe_is_not_executed() {
createTryCatchBlock(); createTryCatchBlock();
probes[0] = true; probes[0] = true;
probes[1] = true; probes[1] = true;
Expand All @@ -718,7 +718,7 @@ public void try_catch_should_should_show_exception_handler_missed_when_probe_is_
} }


@Test @Test
public void try_catch_should_should_show_all_covered_when_all_probes_are_executed() { public void try_catch_should_show_all_covered_when_all_probes_are_executed() {
createTryCatchBlock(); createTryCatchBlock();
probes[0] = true; probes[0] = true;
probes[1] = true; probes[1] = true;
Expand Down

0 comments on commit 00f06ec

Please sign in to comment.