Fix compile error introduced by e25a29a180360a942faee8d09b6ec8f045b44745

This commit is contained in:
Norman Maurer 2015-12-11 08:08:52 +01:00
parent b688bbb5df
commit 588169581d

View File

@ -31,7 +31,7 @@ public abstract class WebSocketClientHandshakerTest {
WebSocketClientHandshaker handshaker = newHandshaker(uri);
FullHttpRequest request = handshaker.newHandshakeRequest();
try {
assertEquals("/path%20with%20ws", request.getUri());
assertEquals("/path%20with%20ws", request.uri());
} finally {
request.release();
}