From cb96a5abd1ba3a9ea03af401f5de6cd1c713a58c Mon Sep 17 00:00:00 2001 From: AmjadHD Date: Sun, 2 Oct 2022 16:36:17 +0100 Subject: [PATCH] Fix CI --- lib/pure/base64.nim | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/lib/pure/base64.nim b/lib/pure/base64.nim index 6118e4bcfe..62419f59e6 100644 --- a/lib/pure/base64.nim +++ b/lib/pure/base64.nim @@ -31,7 +31,7 @@ runnableExamples: ## runnableExamples: - let encodedInts = encode([1,2,3]) + let encodedInts = encode([1'u8,2,3]) assert encodedInts == "AQID" let encodedChars = encode(['h','e','y']) assert encodedChars == "aGV5"