Skip to content
This repository has been archived by the owner on Oct 1, 2024. It is now read-only.

Commit

Permalink
revert change to print_divider
Browse files Browse the repository at this point in the history
  • Loading branch information
JoshKarpel committed Mar 19, 2021
1 parent 46b808c commit 141dfe8
Showing 1 changed file with 1 addition and 5 deletions.
6 changes: 1 addition & 5 deletions ward/terminal.py
Original file line number Diff line number Diff line change
Expand Up @@ -400,7 +400,7 @@ def output_all_test_results(
return all_results

def print_divider(self) -> None:
print_divider()
console.print(Rule(style="muted"))

def output_single_test_result(self, test_result: TestResult):
"""Indicate whether a test passed, failed, was skipped etc."""
Expand Down Expand Up @@ -434,10 +434,6 @@ def output_test_failed_location(self, test_result: TestResult):
raise NotImplementedError()


def print_divider() -> None:
console.print(Rule(style="muted"))


@dataclass
class TerminalSize:
height: int
Expand Down

0 comments on commit 141dfe8

Please sign in to comment.