Skip to content

Commit f1ff137

Browse files
committed
Merge pull request open-source-parsers#291 from cdunn2001/0.y.z
fix open-source-parsers#290
2 parents f40dd0f + 2760c79 commit f1ff137

File tree

1 file changed

+3
-0
lines changed

1 file changed

+3
-0
lines changed

src/test_lib_json/main.cpp

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -296,7 +296,10 @@ JSONTEST_FIXTURE(ValueTest, null) {
296296
JSONTEST_ASSERT_EQUAL(0.0, null_.asFloat());
297297
JSONTEST_ASSERT_STRING_EQUAL("", null_.asString());
298298

299+
#if !defined(__ARMEL__)
300+
// See line #165 of include/json/value.h
299301
JSONTEST_ASSERT_EQUAL(Json::Value::null, null_);
302+
#endif
300303
}
301304

302305
JSONTEST_FIXTURE(ValueTest, strings) {

0 commit comments

Comments
 (0)