Skip to content

Commit

Permalink
remove consistent hack
Browse files Browse the repository at this point in the history
  • Loading branch information
Mathias Brulatout committed Aug 27, 2024
1 parent 7756723 commit 76b94b2
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/conftest.py
Original file line number Diff line number Diff line change
Expand Up @@ -10,11 +10,11 @@
@pytest.fixture
def acl_consul(acl_consul_instance):
instance, token = acl_consul_instance
return ACLConsul(Consul(consistency="consistent", port=instance.port), token, instance.version)
return ACLConsul(Consul(port=instance.port), token, instance.version)


@pytest.fixture
def consul_obj(consul_port):
consul_port, consul_version = consul_port
c = Consul(consistency="consistent", port=consul_port)
c = Consul(port=consul_port)
return c, consul_version

0 comments on commit 76b94b2

Please sign in to comment.