Skip to content

Commit

Permalink
Depend on Netty QUIC Codec v0.0.63.Final (#3264)
Browse files Browse the repository at this point in the history
  • Loading branch information
violetagg authored May 27, 2024
1 parent 9ef7d0b commit e5a3d34
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ ext {
println "Netty version defined from command line: ${forceNettyVersion}"
}
nettyIoUringVersion = '0.0.25.Final'
nettyQuicVersion = '0.0.62.Final'
nettyQuicVersion = '0.0.63.Final'

// Testing
brotli4jVersion = '1.16.0'
Expand Down
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2021-2023 VMware, Inc. or its affiliates, All Rights Reserved.
* Copyright (c) 2021-2024 VMware, Inc. or its affiliates, All Rights Reserved.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
Expand Down Expand Up @@ -252,7 +252,7 @@ private void testMaxStreamsReached(QuicStreamType streamType,
assertThat(incomingData.get()).isEqualTo("Hello World!");
assertThat(error.get()).isNotNull()
.isInstanceOf(QuicException.class)
.hasMessage("QUICHE_ERR_STREAM_LIMIT");
.hasMessageContaining("QUICHE_ERR_STREAM_LIMIT");
}

@Test
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -252,7 +252,7 @@ private void testMaxStreamsReached(QuicStreamType streamType,
assertThat(incomingData.get()).isEqualTo("Hello World!");
assertThat(error.get()).isNotNull()
.isInstanceOf(QuicException.class)
.hasMessage("QUICHE_ERR_STREAM_LIMIT");
.hasMessageContaining("QUICHE_ERR_STREAM_LIMIT");
}

@Test
Expand Down

0 comments on commit e5a3d34

Please sign in to comment.