Skip to content

Commit

Permalink
fix weird test params
Browse files Browse the repository at this point in the history
  • Loading branch information
nic11 committed Dec 6, 2024
1 parent 2d001e2 commit d1d63f1
Showing 1 changed file with 8 additions and 11 deletions.
19 changes: 8 additions & 11 deletions unit/ArchiveTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -155,22 +155,19 @@ TEST_CASE("SimdJsonArchive simple", "[Archives] [Serialization]")
false, //
true, //
'7', //
static_cast<int8_t>(42), //

static_cast<uint8_t>(42), //
static_cast<int16_t>(42), //

static_cast<int8_t>(42), //
static_cast<uint8_t>(42), //
static_cast<int16_t>(42), //
static_cast<uint16_t>(42), //
static_cast<int32_t>(42), //

static_cast<uint32_t>(42), //
static_cast<uint32_t>(42), //

static_cast<uint64_t>(42), //
static_cast<int64_t>(42), //
static_cast<uint64_t>(42), //
13.37, //
13.37f, // TODO(#2250): check with eps if needed
-100.f //

13.37, //
13.37f, // TODO(#2250): check with eps if needed
-100.f //
);
CAPTURE(param);

Expand Down

0 comments on commit d1d63f1

Please sign in to comment.