summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--test/core/model/TypesystemTest.cpp6
1 files changed, 0 insertions, 6 deletions
diff --git a/test/core/model/TypesystemTest.cpp b/test/core/model/TypesystemTest.cpp
index a408700..e6655c1 100644
--- a/test/core/model/TypesystemTest.cpp
+++ b/test/core/model/TypesystemTest.cpp
@@ -520,9 +520,6 @@ TEST(StructType, creationWithParent)
{
Rooted<StructType> structWithParentType =
createStructTypeWithParent(structType, mgr, logger);
-#ifdef MANAGER_GRAPHVIZ_EXPORT
- mgr.exportGraphviz("structTypeTest1.dot");
-#endif
Variant val = structWithParentType->create();
ASSERT_TRUE(val.isArray());
@@ -544,9 +541,6 @@ TEST(StructType, creationWithParent)
ASSERT_EQ("value1", arr[4].asString());
ASSERT_EQ(42, arr[5].asInt());
}
-#ifdef MANAGER_GRAPHVIZ_EXPORT
- mgr.exportGraphviz("structTypeTest2.dot");
-#endif
}
TEST(StructType, derivedFrom)