Updated criteria for valid object ID name

This commit is contained in:
Lew Rossman
2019-04-18 17:12:56 -04:00
parent 6b0e421a39
commit a4ac34d5d6
5 changed files with 5 additions and 5 deletions

View File

@@ -57,7 +57,7 @@ BOOST_FIXTURE_TEST_CASE(test_node_validate_id, FixtureInitClose)
error = EN_addnode(ph, (char *)"N 3", EN_JUNCTION, &index);
BOOST_REQUIRE(error == 252);
error = EN_addnode(ph, (char *)"N\"3", EN_JUNCTION, &index);
error = EN_addnode(ph, (char *)"\"N3", EN_JUNCTION, &index);
BOOST_REQUIRE(error == 252);
error = EN_addnode(ph, (char *)"N;3", EN_JUNCTION, &index);