Skip to content

Commit

Permalink
Formatting.
Browse files Browse the repository at this point in the history
  • Loading branch information
NotSpecial committed Jul 14, 2023
1 parent c106cc7 commit cb0e74f
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions tests/test_sshfs.py
Original file line number Diff line number Diff line change
Expand Up @@ -83,10 +83,10 @@ def test_fsspec_registration(fs, ssh_server, remote_dir, user="user"):
file_fs = file.buffer.fs
assert isinstance(file_fs, SSHFileSystem)
assert file_fs.storage_options == {
'host': ssh_server.host,
'port': ssh_server.port,
'username': user,
'client_keys': [USERS[user]],
"host": ssh_server.host,
"port": ssh_server.port,
"username": user,
"client_keys": [USERS[user]],
}
# Write something.
file.write("Anything")
Expand Down

0 comments on commit cb0e74f

Please sign in to comment.