Skip to content

Commit

Permalink
Add support for nested arrays in property conditions.
Browse files Browse the repository at this point in the history
  • Loading branch information
h2zero committed Mar 27, 2022
1 parent fca6b1d commit 87ed288
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tests/BLE/test_ble.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -406,7 +406,7 @@ int main() {

for (unsigned int i = 0; i < sizeof(test_mfgdata) / sizeof(test_mfgdata[0]); ++i) {
doc.clear();
std::cout << "trying " << test_mfgdata[i][0] << " : " << test_mfgdata[i][1] << std::endl;
std::cout << "trying " << test_mfgdata[i][0] << " : " << test_mfgdata[i][1] << " : " << test_mfgdata[i][2] << std::endl;
doc["name"] = test_mfgdata[i][1];
doc["manufacturerdata"] = test_mfgdata[i][2];
bleObject = doc.as<JsonObject>();
Expand Down

0 comments on commit 87ed288

Please sign in to comment.