Skip to content

Commit

Permalink
rename default to production workspace (#98)
Browse files Browse the repository at this point in the history
  • Loading branch information
bverbeken authored Dec 2, 2024
1 parent f0399be commit cab0f59
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion tests/workspaces/testListActiveWorkspaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def test(self):

workspaces = self.client.workspaces.active.list()

assert_that(workspaces).extracting("name").contains_exactly("ws3", "ws1", "Default workspace")
assert_that(workspaces).extracting("name").contains_exactly("ws3", "ws1", "Production workspace")

def test_filter(self):
self.client.workspaces.create("someWorkspace")
Expand Down
2 changes: 1 addition & 1 deletion tests/workspaces/testListAllWorkspaces.py
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ def test(self):

workspaces = self.client.workspaces.list()

assert_that(workspaces).extracting("name").contains_exactly("ws3", "ws2", "ws1", "Default workspace")
assert_that(workspaces).extracting("name").contains_exactly("ws3", "ws2", "ws1", "Production workspace")

def test_filter(self):
self.client.workspaces.create("someWorkspace")
Expand Down

0 comments on commit cab0f59

Please sign in to comment.