Skip to content

Commit d38cc7c

Browse files
Align test tags
1 parent f6ded0f commit d38cc7c

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

  • source/MaterialXTest/MaterialXCore

source/MaterialXTest/MaterialXCore/Node.cpp

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -778,13 +778,13 @@ TEST_CASE("Node Definition Creation", "[nodedef]")
778778
REQUIRE(doc->validate());
779779
}
780780

781-
TEST_CASE("renameElement with connections", "[Node, Node Graph]")
781+
TEST_CASE("renameElement with connections", "[node, nodegraph]")
782782
{
783783
mx::DocumentPtr doc = mx::createDocument();
784784

785785
const std::string type = "float";
786786
const std::string new_name = "new_name";
787-
SECTION("Node")
787+
SECTION("node")
788788
{
789789
// Upstream -> Downstream
790790
SECTION("Node within NodeGraph -> NodeGraph output")
@@ -863,7 +863,7 @@ TEST_CASE("renameElement with connections", "[Node, Node Graph]")
863863
REQUIRE(downstreamOutput->getNodeName() == new_name);
864864
}
865865
}
866-
SECTION("Node Graph")
866+
SECTION("nodegraph")
867867
{
868868
mx::NodeGraphPtr upstreamGraph = doc->addNodeGraph();
869869
mx::NodePtr upstreamGraphNode = upstreamGraph->addNode("constant", "upstreamNode", type);
@@ -895,7 +895,7 @@ TEST_CASE("renameElement with connections", "[Node, Node Graph]")
895895
}
896896
}
897897

898-
TEST_CASE("renameElement with no connections", "[Element]")
898+
TEST_CASE("renameElement with no connections", "[element, document]")
899899
{
900900
mx::DocumentPtr doc = mx::createDocument();
901901
mx::ElementPtr child = doc->addMaterialNode("name1");

0 commit comments

Comments
 (0)