Skip to content

Commit

Permalink
fixed bad indentation
Browse files Browse the repository at this point in the history
  • Loading branch information
jkshj21 authored Dec 19, 2023
1 parent 1ead49a commit 5b2c16b
Showing 1 changed file with 8 additions and 8 deletions.
16 changes: 8 additions & 8 deletions src/dfcx_scrapi/core/test_cases.py
Original file line number Diff line number Diff line change
Expand Up @@ -584,15 +584,15 @@ def get_test_cases_map(self, agent_id: str = None, reverse=False):
agent_id = self.agent_id

if reverse:
test_cases_dict = {
test_case.display_name: test_case.name
for test_case in self.list_test_cases(agent_id = agent_id)
}
test_cases_dict = {
test_case.display_name: test_case.name
for test_case in self.list_test_cases(agent_id = agent_id)
}
else:
test_cases_dict = {
test_case.name: test_case.display_name
for test_case in self.list_test_cases(agent_id = agent_id)
}
test_cases_dict = {
test_case.name: test_case.display_name
for test_case in self.list_test_cases(agent_id = agent_id)
}
return test_cases_dict

def get_test_case_results_df(self, agent_id=None, retest_all=False):
Expand Down

0 comments on commit 5b2c16b

Please sign in to comment.