Skip to content

Commit

Permalink
fix print compatibility
Browse files Browse the repository at this point in the history
  • Loading branch information
Danil Tolmachev committed Nov 23, 2022
1 parent f963517 commit b1a2e8e
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/benchmark/run_parallel.py
Original file line number Diff line number Diff line change
Expand Up @@ -89,9 +89,9 @@ class Scenario:
ops: int = 10

def print(self):
res = f"Scenario: {'🔹' * self.readers}{'🔻' * self.writers} ({self.readers}r{self.writers}w)"
res += ", 🔸 compression" if self.use_compression else ""
res += ", 💎 big file" if self.big_file else ""
res = f"Scenario: {'*' * self.readers}{'#' * self.writers} ({self.readers}r{self.writers}w)"
res += ", [] compression" if self.use_compression else ""
res += ", {} big file" if self.big_file else ""
print(res)


Expand Down

0 comments on commit b1a2e8e

Please sign in to comment.