Skip to content

Commit

Permalink
Correct test_config_generator.py
Browse files Browse the repository at this point in the history
  • Loading branch information
pskiran1 committed Aug 19, 2023
1 parent 5f541ab commit 6f1a13e
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion qa/L0_bls_model/test_config_generator.py
Original file line number Diff line number Diff line change
Expand Up @@ -60,7 +60,9 @@ def setup(self):
args = parser.parse_args()
self.config = {}
self.config["profile_models"] = sorted(args.profile_models.split(","))
self.config["bls_composing_models"] = sorted(args.profile_models.split(","))
self.config["bls_composing_models"] = sorted(
args.bls_composing_models.split(",")
)

def generate_config(self):
with open("config.yml", "w+") as f:
Expand Down

0 comments on commit 6f1a13e

Please sign in to comment.