Fixed the mis-spelling of rendezvous.
Signed-off-by: Travis Miller <raphtee@google.com>
git-svn-id: http://test.kernel.org/svn/autotest/trunk@3320 592f7852-d20e-0410-864c-8624ca9c26a4
diff --git a/client/tests/netpipe/netpipe.py b/client/tests/netpipe/netpipe.py
index c01cb9c..5dd67e8 100644
--- a/client/tests/netpipe/netpipe.py
+++ b/client/tests/netpipe/netpipe.py
@@ -51,19 +51,19 @@
if role == 'server':
# Wait up to ten minutes for both to reach this point.
- self.job.barrier(server_tag, 'start', 600).rendevous(*all)
+ self.job.barrier(server_tag, 'start', 600).rendezvous(*all)
self.server_start(args)
# Both the client and server should be closed so just to make
# sure they are both at the same point wait at most five minutes.
- self.job.barrier(server_tag, 'stop', 300).rendevous(*all)
+ self.job.barrier(server_tag, 'stop', 300).rendezvous(*all)
elif role == 'client':
# Wait up to ten minutes for the server to start
- self.job.barrier(client_tag, 'start', 600).rendevous(*all)
+ self.job.barrier(client_tag, 'start', 600).rendezvous(*all)
# Sleep 10 seconds to make sure the server is started
time.sleep(10)
self.client(server_ip, args)
# Wait up to five minutes for the server to also reach this point
- self.job.barrier(client_tag, 'stop', 300).rendevous(*all)
+ self.job.barrier(client_tag, 'stop', 300).rendezvous(*all)
else:
raise error.TestError('invalid role specified')