Skip to content

Commit

Permalink
Fix typo
Browse files Browse the repository at this point in the history
  • Loading branch information
kedder committed Aug 22, 2020
1 parent 15df764 commit 062a50c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion src/ovshell_core/setupapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -274,7 +274,7 @@ def _switch_step(self, step_no: int) -> None:

def _on_wizard_completed(self, w: urwid.Widget) -> None:
done_msg = [
("highlight", "Setup is completed"),
("highlight", "Setup is complete"),
"\n\n",
"Openvario is ready to use. Happy flying!",
]
Expand Down
2 changes: 1 addition & 1 deletion tests/ovshell_core_tests/test_setupapp.py
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ def test_wizard_go_through(self, ovshell: testing.OpenVarioShellStub) -> None:
_keypress(w, ["enter"])

rendered = _render(w)
assert "Setup is completed" in rendered
assert "Setup is complete" in rendered

_keypress(w, ["enter"])
assert ovshell.screen.stub_top_activity() is None
Expand Down

0 comments on commit 062a50c

Please sign in to comment.