From 9ca8f706bf019a341cfcd3cb1fe926268589a617 Mon Sep 17 00:00:00 2001 From: Joffrey JAFFEUX Date: Thu, 19 Dec 2024 12:05:54 +0100 Subject: [PATCH] DEV: fixes typo in notifications-tracking assertions (#30371) --- .../tests/helpers/notifications-tracking-assertions.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/app/assets/javascripts/discourse/tests/helpers/notifications-tracking-assertions.js b/app/assets/javascripts/discourse/tests/helpers/notifications-tracking-assertions.js index 9e0cc8167da..8d94e9e39fe 100644 --- a/app/assets/javascripts/discourse/tests/helpers/notifications-tracking-assertions.js +++ b/app/assets/javascripts/discourse/tests/helpers/notifications-tracking-assertions.js @@ -18,7 +18,7 @@ class NotificationsTracking { } hasSelectedLevelId(id, message) { - this.context.dom(this.element).hasAttribute("data-level-id", name, message); + this.context.dom(this.element).hasAttribute("data-level-id", id, message); } }