Skip to content

Commit

Permalink
Fix spelling in ci/cd workflow and dart.py (#485)
Browse files Browse the repository at this point in the history
  • Loading branch information
szepeviktor authored Aug 9, 2023
1 parent 283dea1 commit 0143842
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/ci-cd.yml
Original file line number Diff line number Diff line change
Expand Up @@ -288,7 +288,7 @@ jobs:
INPUT_JSON_FILE: "tests.json"
INPUT_JSON_SUITE_DETAILS: true
INPUT_JSON_TEST_CASE_RESULTS: true
INPUT_REPORT_SUTE_LOGS: "any"
INPUT_REPORT_SUITE_LOGS: "any"
run: |
docker run \
--workdir $GITHUB_WORKSPACE \
Expand Down
2 changes: 1 addition & 1 deletion python/publish/dart.py
Original file line number Diff line number Diff line change
Expand Up @@ -107,7 +107,7 @@ def create_suite(suite, tests):

return testsuite

# do not count hidden tests (unless not successfull)
# do not count hidden tests (unless not successful)
visible_tests = [test for test in tests.values() if test.get('hidden') is not True or test.get('result') != 'success']
testsuites = etree.Element('testsuites', attrib={k: str(v) for k, v in dict(
time=(suite_time - suite_start) / 1000.0 if suite_start is not None and suite_time is not None else None,
Expand Down

0 comments on commit 0143842

Please sign in to comment.