Skip to content

Commit 54e349a

Browse files
committed
Rollback attributes changes
1 parent 5717c9a commit 54e349a

File tree

1 file changed

+13
-13
lines changed

1 file changed

+13
-13
lines changed

site/src/testHelpers/entities.ts

+13-13
Original file line numberDiff line numberDiff line change
@@ -485,33 +485,33 @@ export const MockMemberPermissions = {
485485
};
486486

487487
export const MockUserOwner: TypesGen.User = {
488-
id: "owner",
489-
username: "owner",
490-
email: "owner@coder.com",
491-
created_at: "2022-09-14T19:12:21Z",
492-
updated_at: "2022-09-14T19:12:21Z",
488+
id: "test-user",
489+
username: "TestUser",
490+
email: "test@coder.com",
491+
created_at: "",
492+
updated_at: "",
493493
status: "active",
494494
organization_ids: [MockOrganization.id],
495495
roles: [MockOwnerRole],
496496
avatar_url: "https://avatars.githubusercontent.com/u/95932066?s=200&v=4",
497-
last_seen_at: "2022-09-14T19:12:21Z",
497+
last_seen_at: "",
498498
login_type: "password",
499-
name: "Owner",
499+
name: "",
500500
};
501501

502502
export const MockUserMember: TypesGen.User = {
503-
id: "member",
504-
username: "member",
505-
email: "member@coder.com",
506-
created_at: "2022-09-14T19:12:21Z",
507-
updated_at: "2022-09-14T19:12:21Z",
503+
id: "test-user-2",
504+
username: "TestUser2",
505+
email: "test2@coder.com",
506+
created_at: "",
507+
updated_at: "",
508508
status: "active",
509509
organization_ids: [MockOrganization.id],
510510
roles: [],
511511
avatar_url: "",
512512
last_seen_at: "2022-09-14T19:12:21Z",
513513
login_type: "oidc",
514-
name: "Member",
514+
name: "Mock User The Second",
515515
};
516516

517517
export const SuspendedMockUser: TypesGen.User = {

0 commit comments

Comments
 (0)