From 54c1334a16e599b02dbff0b760ca163eb032fece Mon Sep 17 00:00:00 2001 From: CrossNox Date: Sun, 27 Nov 2022 15:37:56 -0300 Subject: [PATCH] fix test --- test/rustint/core_test.clj | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/rustint/core_test.clj b/test/rustint/core_test.clj index a7d7e27..1bd086c 100644 --- a/test/rustint/core_test.clj +++ b/test/rustint/core_test.clj @@ -320,7 +320,7 @@ (deftest convertir-formato-impresion-07 (testing "Test 07 convertir-formato-impresion" (is (= - (convertir-formato-impresion '("Hola, mundo {:.8f}!" 2.0)) + (convertir-formato-impresion '("Hola, mundo {:.8}!" 2.0)) '("Hola, mundo %.8f!" 2.0) ) )