Skip to content

Commit bf6ef89

Browse files
committed
snaps
1 parent a6e27f5 commit bf6ef89

File tree

1 file changed

+5
-9
lines changed

1 file changed

+5
-9
lines changed

tests/test-team/template-mgmt-routing-component-tests/message-plans.routing-component.spec.ts

Lines changed: 5 additions & 9 deletions
Original file line numberDiff line numberDiff line change
@@ -23,15 +23,11 @@ async function createRoutingConfigs(): Promise<MessagePlansPageData> {
2323
const user = await authHelper.getTestUser(testUsers.User1.userId);
2424

2525
return {
26-
draft: {
27-
...RoutingConfigFactory.create(user, { status: 'DRAFT' }).dbEntry,
28-
},
29-
production: {
30-
...RoutingConfigFactory.create(user, { status: 'COMPLETED' }).dbEntry,
31-
},
32-
deleted: {
33-
...RoutingConfigFactory.create(user, { status: 'DELETED' }).dbEntry,
34-
},
26+
draft: RoutingConfigFactory.create(user, { status: 'DRAFT' }).dbEntry,
27+
28+
production: RoutingConfigFactory.create(user, { status: 'COMPLETED' })
29+
.dbEntry,
30+
deleted: RoutingConfigFactory.create(user, { status: 'DELETED' }).dbEntry,
3531
};
3632
}
3733

0 commit comments

Comments
 (0)