We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 304df48 commit 0714c96Copy full SHA for 0714c96
1 file changed
tests/acl_tests.py
@@ -78,7 +78,7 @@ def test_create_and_clone(self):
78
self.assertIn(clone_id, [r.get('ID') for r in data])
79
80
def test_create_and_update(self):
81
- acl_id = self.consul.acl.create(self.uuidv4())
+ acl_id = str(self.consul.acl.create(self.uuidv4()))
82
self.consul.acl.update(acl_id, 'Foo')
83
data = self.consul.acl.list()
84
self.assertIn('Foo', [r.get('Name') for r in data])
0 commit comments