summaryrefslogtreecommitdiff
path: root/src/etcd/tests/integration/test_simple.py
diff options
context:
space:
mode:
Diffstat (limited to 'src/etcd/tests/integration/test_simple.py')
-rw-r--r--src/etcd/tests/integration/test_simple.py4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/etcd/tests/integration/test_simple.py b/src/etcd/tests/integration/test_simple.py
index 45dea29..50530e9 100644
--- a/src/etcd/tests/integration/test_simple.py
+++ b/src/etcd/tests/integration/test_simple.py
@@ -362,7 +362,7 @@ class TestWatch(EtcdIntegrationTest):
def watch_value(key, queue):
c = etcd.Client(port=6001)
for i in range(0, 3):
- event = next(c.ethernal_watch(key)).value
+ event = next(c.eternal_watch(key)).value
queue.put(event)
changer = multiprocessing.Process(
@@ -400,7 +400,7 @@ class TestWatch(EtcdIntegrationTest):
def watch_value(key, index, queue):
c = etcd.Client(port=6001)
- iterevents = c.ethernal_watch(key, index=index)
+ iterevents = c.eternal_watch(key, index=index)
for i in range(0, 3):
queue.put(next(iterevents).value)