fix uninitialized step name for default

This commit is contained in:
Jonathan Shook 2023-12-18 15:45:17 -06:00
parent ff25f824d6
commit 0a76a2ed32

View File

@ -56,7 +56,7 @@ public class NBCommandAssembly {
"This is the default scenario name, and if you are using different scenario names you should pick something that is different and specific.");
}
} else {
tagged.add(cmd.forContainer(containerName, null));
tagged.add(cmd.forContainer(containerName, containerName));
}
}
return new ArrayList<>(tagged);