Skip to content

Commit

Permalink
clean
Browse files Browse the repository at this point in the history
  • Loading branch information
ray6080 committed Jan 20, 2023
1 parent da01360 commit 23b621a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions test/runner/e2e_ddl_test.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -396,7 +396,7 @@ class TinySnbDDLTest : public DBTest {
->isSuccess());
auto result = conn->query(StringUtils::string_format("MATCH (p:person) return p.random"));
while (result->hasNext()) {
ASSERT_TRUE(result->getNext()->getResultValue(0 /* idx */)->isNull());
ASSERT_TRUE(result->getNext()->getValue(0 /* idx */)->isNull());
}
}

Expand All @@ -407,7 +407,7 @@ class TinySnbDDLTest : public DBTest {
auto result = conn->query(
StringUtils::string_format("MATCH (:person)-[e:knows]->(:person) return e.random"));
while (result->hasNext()) {
ASSERT_TRUE(result->getNext()->getResultValue(0 /* idx */)->isNull());
ASSERT_TRUE(result->getNext()->getValue(0 /* idx */)->isNull());
}
}

Expand Down

0 comments on commit 23b621a

Please sign in to comment.