Skip to content

Commit

Permalink
rename default to production workspace (#145)
Browse files Browse the repository at this point in the history
  • Loading branch information
bverbeken authored Dec 2, 2024
1 parent 35f3e42 commit 00ea384
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions SeatsioDotNet.Test/Workspaces/ListActiveWorkspacesTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public async Task Test()

var workspaces = Client.Workspaces.Active.AllAsync();

Assert.Equal(new[] {"ws3", "ws1", "Default workspace"}, workspaces.Select(e => e.Name));
Assert.Equal(new[] {"ws3", "ws1", "Production workspace"}, workspaces.Select(e => e.Name));
}

[Fact]
Expand All @@ -34,4 +34,4 @@ public async Task Filter()

Assert.Equal(new[] {"anotherAnotherWorkspace", "anotherWorkspace"}, workspaces.Select(e => e.Name));
}
}
}
4 changes: 2 additions & 2 deletions SeatsioDotNet.Test/Workspaces/ListWorkspacesTest.cs
Original file line number Diff line number Diff line change
Expand Up @@ -18,7 +18,7 @@ public async Task Test()

var workspaces = Client.Workspaces.ListAllAsync();

Assert.Equal(new[] {"ws3", "ws2", "ws1", "Default workspace"}, workspaces.Select(e => e.Name));
Assert.Equal(new[] {"ws3", "ws2", "ws1", "Production workspace"}, workspaces.Select(e => e.Name));
}

[Fact]
Expand All @@ -33,4 +33,4 @@ public async Task Filter()

Assert.Equal(new[] {"anotherAnotherWorkspace", "anotherWorkspace"}, workspaces.Select(e => e.Name));
}
}
}

0 comments on commit 00ea384

Please sign in to comment.