Skip to content

Commit a33699f

Browse files
committed
Fix notification parameters in HistoryAndNotifications tests
1 parent c93c10b commit a33699f

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

client/src/components/__tests__/HistoryAndNotifications.test.tsx

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -28,15 +28,15 @@ describe("HistoryAndNotifications", () => {
2828
method: "notifications/message",
2929
params: {
3030
level: "info" as const,
31-
message: "First notification",
31+
data: "First notification",
3232
},
3333
},
3434
{
3535
method: "notifications/progress",
3636
params: {
3737
progressToken: "test-token",
3838
progress: 50,
39-
message: "Second notification",
39+
total: 100,
4040
},
4141
},
4242
];

0 commit comments

Comments
 (0)