summaryrefslogtreecommitdiff
path: root/src/etcd/tests/integration/test_simple.py
diff options
context:
space:
mode:
authorGiuseppe Lavagetto <lavagetto@gmail.com>2014-03-21 07:37:54 +0100
committerGiuseppe Lavagetto <lavagetto@gmail.com>2014-03-21 07:37:54 +0100
commit128d2991c82d05bd2d2cee5bb5079142e9a16c86 (patch)
tree260d59523b928fa223f659865581f6bc4a2ea564 /src/etcd/tests/integration/test_simple.py
parent5db5959a2e1d45ebf9a0b4a3368861d1a6918557 (diff)
Make travis work with v0.3.0.
The etcd build script has chaged the location of the executable so the travis build scripts need to be changed accordingly. Signed-off-by: Giuseppe Lavagetto <lavagetto@gmail.com>
Diffstat (limited to 'src/etcd/tests/integration/test_simple.py')
-rw-r--r--src/etcd/tests/integration/test_simple.py1
1 files changed, 1 insertions, 0 deletions
diff --git a/src/etcd/tests/integration/test_simple.py b/src/etcd/tests/integration/test_simple.py
index b658301..45dea29 100644
--- a/src/etcd/tests/integration/test_simple.py
+++ b/src/etcd/tests/integration/test_simple.py
@@ -127,6 +127,7 @@ class TestSimple(EtcdIntegrationTest):
self.client.write('/dir', None, dir=True, ttl=30)
res = self.client.write('/dir', None, dir=True, ttl=31, prevExist=True)
self.assertEquals(res.ttl, 31)
+ res = self.client.get('/dir')
res.ttl = 120
new_res = self.client.update(res)
self.assertEquals(new_res.ttl, 120)