Unverified Commit ce056aca authored by Ted Lyngmo's avatar Ted Lyngmo Committed by GitHub
Browse files

Add IsNull() check in test after reassignment (#814)

parent 9ab22ef4
...@@ -7,6 +7,7 @@ namespace { ...@@ -7,6 +7,7 @@ namespace {
TEST(LoadNodeTest, Reassign) { TEST(LoadNodeTest, Reassign) {
Node node = Load("foo"); Node node = Load("foo");
node = Node(); node = Node();
EXPECT_TRUE(node.IsNull());
} }
TEST(LoadNodeTest, FallbackValues) { TEST(LoadNodeTest, FallbackValues) {
......
Markdown is supported
0% or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment