From 1707d91cbd2d8f9bcb7b784ba8bfd885269cb01b Mon Sep 17 00:00:00 2001 From: Justin Obara Date: Thu, 5 Dec 2024 13:27:54 -0500 Subject: [PATCH] FLUID-6784: fix the test message for tooltip content styling --- tests/component-tests/tooltip/js/TooltipTests.js | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/tests/component-tests/tooltip/js/TooltipTests.js b/tests/component-tests/tooltip/js/TooltipTests.js index 681c70e843..7fcc101c2f 100644 --- a/tests/component-tests/tooltip/js/TooltipTests.js +++ b/tests/component-tests/tooltip/js/TooltipTests.js @@ -368,7 +368,7 @@ fluid.tests.tooltip.runTests = function () { var tooltip = $(".ui-tooltip"); jqUnit.assertTrue("The css class is applied to the tooltip element", tooltip.hasClass(style)); - jqUnit.assertTrue("The css class is applied to the tooltip element", $(".ui-tooltip-content", tooltip).hasClass(styleContent)); + jqUnit.assertTrue("The css class is applied to the tooltip content element", $(".ui-tooltip-content", tooltip).hasClass(styleContent)); tt.destroy(); });