Skip to content

Commit

Permalink
Remove not needed throws from BaseWriteChannelTest
Browse files Browse the repository at this point in the history
  • Loading branch information
mziccard committed Apr 7, 2016
1 parent 1084ed8 commit 4923856
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -82,7 +82,7 @@ protected BaseState.Builder<CustomServiceOptions, Serializable> stateBuilder() {
}

@Test
public void testConstructor() throws IOException {
public void testConstructor() {
assertEquals(null, channel.options());
assertEquals(ENTITY, channel.entity());
assertEquals(0, channel.position());
Expand All @@ -108,7 +108,7 @@ public void testValidateOpen() throws IOException {
}

@Test
public void testChunkSize() throws IOException {
public void testChunkSize() {
channel.chunkSize(42);
assertEquals(MIN_CHUNK_SIZE, channel.chunkSize());
channel.chunkSize(2 * MIN_CHUNK_SIZE);
Expand Down

0 comments on commit 4923856

Please sign in to comment.