Skip to content

Commit 79cad15

Browse files
committed
Fix existing class hierarchy test syntax
These two tests were previously never run because of a missing comma in the SCENARIO line. The two scenarios also need to have different names.
1 parent dbac316 commit 79cad15

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

jbmc/unit/java_bytecode/goto-programs/class_hierarchy_graph.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,7 @@ void require_parent_child_relationship(
2727
}
2828

2929
SCENARIO(
30-
"Output a simple class hierarchy"
30+
"Output a simple class hierarchy graph",
3131
"[core][goto-programs][class_hierarchy_graph]")
3232
{
3333
symbol_tablet symbol_table =

jbmc/unit/java_bytecode/goto-programs/class_hierarchy_output.cpp

+1-1
Original file line numberDiff line numberDiff line change
@@ -30,7 +30,7 @@ void require_parent_child_relationship(
3030
}
3131

3232
SCENARIO(
33-
"Output a simple class hierarchy"
33+
"Output a simple class hierarchy",
3434
"[core][goto-programs][class_hierarchy]")
3535
{
3636
symbol_tablet symbol_table =

0 commit comments

Comments
 (0)