From d168359e2d0a593bafba6107c58e7856e424bd1b Mon Sep 17 00:00:00 2001 From: David Sancho Moreno Date: Mon, 25 Nov 2024 17:36:45 +0100 Subject: [PATCH] Fix hola test :( --- test/Form__test.re | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/Form__test.re b/test/Form__test.re index 2269a9c0e..dbbe7eee2 100644 --- a/test/Form__test.re +++ b/test/Form__test.re @@ -136,7 +136,7 @@ describe("Form with useOptimistic", () => { let container = ReactTestingLibrary.render(); ReactTestingLibrary.actAsync(() => { - let.await _ = findByString("Hola!", container); + let.await _ = findByString({j|¡Hola!|j}, container); let.await button = findByString("Enviar", container); let.await input = findByPlaceholderText("message", container);