Skip to content

Commit e800120

Browse files
committed
Updating test to reuse string, and updating CONTRIBUTORS file.
1 parent 1dd3523 commit e800120

File tree

2 files changed

+2
-1
lines changed

2 files changed

+2
-1
lines changed

CONTRIBUTORS.txt

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -9,5 +9,6 @@ Brian Wengert (bwengert79)
99
Leslie Brody (Les1966)
1010
Michael M (M1xa)
1111
Matt Peterson (MattPeterson1)
12+
Dmitry Kolomiets (kolomiets)
1213

1314

Release/tests/Functional/json/construction_tests.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -153,9 +153,9 @@ TEST(constructor_overloads)
153153
json::value v5(U("Hello Again!"));
154154
json::value v6(U("YES YOU KNOW IT"));
155155
json::value v7(U("HERE ID IS"));
156-
json::value v8(U("Hello not-escaped!"), true);
157156

158157
const utility::char_t* p9 = U("Hello not-escaped!");
158+
json::value v8(p9, true);
159159
json::value v9(p9, false);
160160

161161
VERIFY_ARE_EQUAL(v0.type(), json::value::Null);

0 commit comments

Comments
 (0)