diff options
author | Kjetil Ørbekk <kjetil.orbekk@gmail.com> | 2012-04-25 11:18:51 +0200 |
---|---|---|
committer | Kjetil Ørbekk <kjetil.orbekk@gmail.com> | 2012-04-25 11:18:51 +0200 |
commit | c665fed11821f24dc99f71f77f297d404316cb24 (patch) | |
tree | 1b2d489cceae107756a4a502a27cbdc2d740fc9f /src/test/java | |
parent | beca45333ed2139b82f45fbe0d408f36c5f5f984 (diff) |
Fix timeout bug.
Diffstat (limited to 'src/test/java')
-rw-r--r-- | src/test/java/com/orbekk/protobuf/ProtobufFunctionalTest.java | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/java/com/orbekk/protobuf/ProtobufFunctionalTest.java b/src/test/java/com/orbekk/protobuf/ProtobufFunctionalTest.java index a1661d2..55cb2cf 100644 --- a/src/test/java/com/orbekk/protobuf/ProtobufFunctionalTest.java +++ b/src/test/java/com/orbekk/protobuf/ProtobufFunctionalTest.java @@ -167,7 +167,7 @@ public class ProtobufFunctionalTest { final CountDownLatch stop = new CountDownLatch(1); final Rpc rpc = new Rpc(); - rpc.setTimout(1); + rpc.setTimeout(1); service.testC(rpc, request, new RpcCallback<Type2>() { @Override public void run(Type2 result) { stop.countDown(); |