Skip to content

Commit

Permalink
Add space between emoticon and text
Browse files Browse the repository at this point in the history
  • Loading branch information
manykarim committed Feb 26, 2024
1 parent b656db7 commit 5870073
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions 01_resultmodel/report-results.py
Original file line number Diff line number Diff line change
Expand Up @@ -26,11 +26,11 @@ def start_suite(self, suite):

def start_test(self, test):
status_emoji = {
"PASS": "✅PASS",
"FAIL": "❌FAIL",
"SKIP": "🛑SKIP",
"PASS": "✅ PASS",
"FAIL": "❌ FAIL",
"SKIP": "🛑 SKIP",
"NOT RUN": "NOT RUN",
"NOT SET": "❓NOT SET",
"NOT SET": "❓ NOT SET",
}
self.f.write(f"| {test.name} | {status_emoji.get(test.status, "unknown")} | {test.elapsed_time.total_seconds()} |\n")

Expand Down

0 comments on commit 5870073

Please sign in to comment.