Skip to content

Commit 7aacc1a

Browse files
author
Shubham
committed
Remove credentials for SyncClient constructor in test_sync_client_states
1 parent 7bf29d4 commit 7aacc1a

File tree

1 file changed

+1
-2
lines changed

1 file changed

+1
-2
lines changed

tests/test_sync.py

Lines changed: 1 addition & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -12,8 +12,7 @@ def test_sync_protocol_version():
1212

1313
def test_sync_client_states(test_store):
1414
server_urls = ["ws://localhost:9999"]
15-
credentials = [SyncCredentials.none()]
16-
client = SyncClient(test_store, server_urls, credentials)
15+
client = SyncClient(test_store, server_urls)
1716
assert client.get_sync_state() == SyncState.CREATED
1817
client.start()
1918
assert client.get_sync_state() == SyncState.STARTED

0 commit comments

Comments
 (0)