Skip to content

Commit

Permalink
Fix windows build Fixes #15
Browse files Browse the repository at this point in the history
  • Loading branch information
odygrd committed Apr 18, 2020
1 parent fcd8fcc commit ff33f25
Showing 1 changed file with 0 additions and 9 deletions.
9 changes: 0 additions & 9 deletions quill/quill/test/TimestampFormatterTest.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -56,15 +56,6 @@ TEST(TimestampFormatter, format_string_with_millisecond_precision)
EXPECT_STREQ(result, "22:18:07.987");
}

// with double formatting
{
const std::chrono::nanoseconds timestamp{1587161887987654321};
TimestampFormatter ts_formatter{"%H:%M:%S.%Qms %z", quill::Timezone::GmtTime};

auto const& result = ts_formatter.format_timestamp(timestamp);
EXPECT_STREQ(result, "22:18:07.987 +0000");
}

// with double formatting
{
const std::chrono::nanoseconds timestamp{1587161887803654321};
Expand Down

0 comments on commit ff33f25

Please sign in to comment.