Skip to content

Commit

Permalink
Fix typo in test.
Browse files Browse the repository at this point in the history
  • Loading branch information
Florian Loitsch committed Mar 6, 2019
1 parent 53c4c75 commit 860b431
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
2 changes: 1 addition & 1 deletion CMakeLists.txt
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
cmake_minimum_required(VERSION 3.0)
project(double-conversion VERSION 3.1.2)
project(double-conversion VERSION 3.1.3)

set(headers
double-conversion/bignum.h
Expand Down
4 changes: 4 additions & 0 deletions Changelog
Original file line number Diff line number Diff line change
@@ -1,3 +1,7 @@
2019-03-06:
Fix typo in test.
Update version number.

2019-03-03:
Fix separator characters when they they don't fit into 8 bits.
Update version number.
Expand Down
2 changes: 1 addition & 1 deletion test/cctest/test-conversions.cc
Original file line number Diff line number Diff line change
Expand Up @@ -3607,7 +3607,7 @@ TEST(StringToDoubleSeparator) {
CHECK(all_used);

CHECK_EQ(3.0,
StrToD16("0x0@23.p0", flags, 0.0, &processed, &all_used,
StrToD16("0x0@3.p0", flags, 0.0, &processed, &all_used,
char_separator, separator));
CHECK(all_used);
}
Expand Down

0 comments on commit 860b431

Please sign in to comment.