Skip to content

Commit

Permalink
fix: Use full import path for zk schema
Browse files Browse the repository at this point in the history
  • Loading branch information
Batalex committed Sep 5, 2024
1 parent 1475453 commit c92ca8e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions interfaces/zookeeper/v0/interface_tests/test_provider.py
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
from scenario import State, Relation, PeerRelation
from interface_tester import Tester
from zookeeper.v0.schema import ProviderSchema
from interfaces.zookeeper.v0.schema import ProviderSchema


def test_no_data_on_created():
Expand Down Expand Up @@ -49,4 +49,4 @@ def test_database_requested():
state = t.run("database-relation-changed")
t._state_in = state
t.run("cluster-relation-changed")
t.assert_schema_valid(ProviderSchema())
t.assert_schema_valid(ProviderSchema)

0 comments on commit c92ca8e

Please sign in to comment.