Commit 93cbeaca authored by James Smith's avatar James Smith Committed by Mayank Mittal

Fixes variable name used in applauncher arg test (#329)

parent 16b0b992
......@@ -23,7 +23,7 @@ class TestAppLauncher(unittest.TestCase):
# add app launcher arguments
AppLauncher.add_app_launcher_args(parser)
# check that argparser has the mandatory arguments
for name in AppLauncher._APPLAUNCHER_CONFIG_TYPES:
for name in AppLauncher._APPLAUNCHER_CFG_INFO:
self.assertTrue(parser._option_string_actions[f"--{name}"])
# parse args
mock_args = parser.parse_args()
......
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