Skip to content

Commit aa7f0c5

Browse files
committed
Adding cluster testcase
1 parent 9ccbe69 commit aa7f0c5

File tree

1 file changed

+2
-1
lines changed

1 file changed

+2
-1
lines changed

tests/test_graph.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -72,7 +72,8 @@ async def test_graph_properties(db, bad_graph, cluster, enterprise):
7272
properties = await graph.properties()
7373
assert properties.name == name
7474
assert properties.is_smart == is_smart
75-
assert properties.number_of_shards == options.number_of_shards
75+
if cluster:
76+
assert properties.number_of_shards == options.number_of_shards
7677
assert properties.orphan_collections == [vcol_name]
7778

7879
# Create second vertex collection

0 commit comments

Comments
 (0)