Skip to content

Commit

Permalink
fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rjra2611 committed Aug 23, 2023
1 parent b704ca7 commit 326ca4c
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/commands/cloud/object_store/test_set.py
Original file line number Diff line number Diff line change
Expand Up @@ -32,4 +32,4 @@ def test_set_sets_value_when_path_is_given() -> None:

result = CliRunner().invoke(lean, ["cloud", "object-store", "set", "test-key", file_path])
assert result.exit_code == 0
container.api_client.object_store.set.assert_called_once_with('test-key', '\n{\n // data-folder documentation\n "data-folder": "data"\n}\n ', 'abc')
container.api_client.object_store.set.assert_called_once_with('test-key', b'\r\n{\r\n // data-folder documentation\r\n "data-folder": "data"\r\n}\r\n ', 'abc')

0 comments on commit 326ca4c

Please sign in to comment.