Skip to content

Commit

Permalink
fix final test
Browse files Browse the repository at this point in the history
  • Loading branch information
adlius committed Oct 1, 2024
1 parent d6ed9d1 commit 855cff9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion osf_tests/external/gravy_valet/gv_fakes.py
Original file line number Diff line number Diff line change
Expand Up @@ -165,7 +165,7 @@ class _FakeAddon(_FakeGVEntity):
resource_pk: int
base_account: _FakeAccount
display_name: str = ''
root_folder: str = '/'
root_folder: str = '0:1'

def _serialize_attributes(self):
return {
Expand Down
2 changes: 1 addition & 1 deletion osf_tests/test_gv_utils.py
Original file line number Diff line number Diff line change
Expand Up @@ -539,6 +539,6 @@ def test_make_ephemeral_node_settings(self, contributor, project, fake_box_addon
assert ephemeral_config.gv_id == fake_box_addon.pk
assert ephemeral_config.config.name == 'addons.box'
assert ephemeral_config.serialize_waterbutler_settings() == {
'folder': fake_box_addon.root_folder,
'folder': fake_box_addon.root_folder.split(':')[1],
'service': 'box'
}

0 comments on commit 855cff9

Please sign in to comment.