Browse Source

correct the comment

namnguyen 10 months ago
parent
commit
3de0dcdf20
1 changed files with 1 additions and 1 deletions
  1. 1 1
      frontend/taipy-gui/src/components/Taipy/Input.spec.tsx

+ 1 - 1
frontend/taipy-gui/src/components/Taipy/Input.spec.tsx

@@ -251,7 +251,7 @@ describe("Number Component", () => {
         const elt = getByDisplayValue("20") as HTMLInputElement;
         await user.click(elt);
         await user.keyboard("[ShiftLeft>]");
-        // Press the arrow up twice to validate that the value will not exceed the minimum value when reached
+        // Press the arrow down twice to validate that the value will not exceed the minimum value when reached
         await user.keyboard("[ArrowDown]");
         await user.keyboard("[ArrowDown]");
         expect(elt.value).toBe("0");