diff --git a/tests/Workspaces/ListActiveWorkspacesTest.php b/tests/Workspaces/ListActiveWorkspacesTest.php index 743b66c..4fb022b 100644 --- a/tests/Workspaces/ListActiveWorkspacesTest.php +++ b/tests/Workspaces/ListActiveWorkspacesTest.php @@ -20,7 +20,7 @@ public function test() return $workspace->name; }); - self::assertEquals(["ws3", "ws1", "Default workspace"], array_values($workspaceNames)); + self::assertEquals(["ws3", "ws1", "Production workspace"], array_values($workspaceNames)); } public function test_filter() diff --git a/tests/Workspaces/ListWorkspacesTest.php b/tests/Workspaces/ListWorkspacesTest.php index 0f7a0d0..b62fa10 100644 --- a/tests/Workspaces/ListWorkspacesTest.php +++ b/tests/Workspaces/ListWorkspacesTest.php @@ -20,7 +20,7 @@ public function test() return $workspace->name; }); - self::assertEquals(["ws3", "ws2", "ws1", "Default workspace"], array_values($workspaceNames)); + self::assertEquals(["ws3", "ws2", "ws1", "Production workspace"], array_values($workspaceNames)); } public function test_filter()