From 126fececf3694a29e69e608a15f8ac2f10c32aac Mon Sep 17 00:00:00 2001 From: Gabriel Arazas Date: Sun, 25 Feb 2024 17:22:53 +0800 Subject: [PATCH] bahaghari/tests: fix --- subprojects/bahaghari/tests/lib/hex.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/subprojects/bahaghari/tests/lib/hex.nix b/subprojects/bahaghari/tests/lib/hex.nix index 7c20944d..b0faa8ba 100644 --- a/subprojects/bahaghari/tests/lib/hex.nix +++ b/subprojects/bahaghari/tests/lib/hex.nix @@ -37,7 +37,7 @@ pkgs.lib.runTests { }; testHexPadWithNegativeDigits = { - expr = lib.hex.pad -5 "A42C"; + expr = lib.hex.pad (-5) "A42C"; expected = "A42C"; }; }