Skip to content

Commit

Permalink
Test failures
Browse files Browse the repository at this point in the history
  • Loading branch information
lincolnthree committed Sep 28, 2011
1 parent de2598d commit d3a6699
Showing 1 changed file with 3 additions and 3 deletions.
Expand Up @@ -57,7 +57,7 @@ public void testAppendToArray2()
assertEquals("4", result[1]);
}

@Test(expected = IllegalArgumentException.class)
@Test(expected = IllegalStateException.class)
public void testAppendToArray3()
{
String[] foo = null;
Expand All @@ -66,7 +66,7 @@ public void testAppendToArray3()
GeneralUtils.join(String.class, foo, bar);
}

@Test(expected = IllegalArgumentException.class)
@Test(expected = IllegalStateException.class)
public void testAppendToArray4()
{
String[] foo = new String[] { "3", "4" };
Expand All @@ -75,7 +75,7 @@ public void testAppendToArray4()
GeneralUtils.join(String.class, foo, bar);
}

@Test(expected = IllegalArgumentException.class)
@Test(expected = IllegalStateException.class)
public void testAppendToArray5()
{
String[] foo = new String[] { "3", "4" };
Expand Down

0 comments on commit d3a6699

Please sign in to comment.