Skip to content

Commit

Permalink
Test throws AssertionError instead of Error
Browse files Browse the repository at this point in the history
  • Loading branch information
garydgregory committed Aug 31, 2023
1 parent 559eed1 commit 88936ac
Showing 1 changed file with 1 addition and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -105,7 +105,7 @@ public class Base32Test {
"OOOOIIII" }
};
} catch (final DecoderException de) {
throw new Error(":(", de);
throw new AssertionError(":(", de);
}
}
private static final String [][] BASE32HEX_TEST_CASES = { // RFC 4648
Expand Down

0 comments on commit 88936ac

Please sign in to comment.