From d3c3774391533826ab0ded3d7432ed52aef1200b Mon Sep 17 00:00:00 2001 From: munna0908 Date: Thu, 22 May 2025 17:23:20 +0530 Subject: [PATCH] fix test filename --- tests/cbor/testObjects.nim | 1 - tests/cbor/{testprimitives.nim => testPrimitives.nim} | 2 +- 2 files changed, 1 insertion(+), 2 deletions(-) rename tests/cbor/{testprimitives.nim => testPrimitives.nim} (100%) diff --git a/tests/cbor/testObjects.nim b/tests/cbor/testObjects.nim index 4b0deed..2f8415e 100644 --- a/tests/cbor/testObjects.nim +++ b/tests/cbor/testObjects.nim @@ -1,4 +1,3 @@ -# File: /Users/rahul/Work/repos/nim-serde/tests/cbor_questionable.nim import std/unittest import std/options diff --git a/tests/cbor/testprimitives.nim b/tests/cbor/testPrimitives.nim similarity index 100% rename from tests/cbor/testprimitives.nim rename to tests/cbor/testPrimitives.nim index b555d37..2741390 100644 --- a/tests/cbor/testprimitives.nim +++ b/tests/cbor/testPrimitives.nim @@ -98,8 +98,8 @@ test "sorting": toCbor(false).tryValue, ] shuffle(keys) - for k in keys: map[k] = toCbor(0).tryValue + for k in keys: map[k] = toCbor(0).tryValue check not map.isSorted.tryValue check sort(map).isSuccess check map.isSorted.tryValue