Skip to content

Commit 23b11d7

Browse files
committed
Update messages in desktop GUI apps
1 parent 07308f1 commit 23b11d7

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

seleniumbase/console_scripts/sb_behave_gui.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,11 +243,11 @@ def create_tkinter_gui(tests, command_string):
243243
tk.Label(root, text="").pack()
244244
run_display = (
245245
"Select from %s tests: "
246-
"(If NO TESTS are selected, then ALL TESTS will be run)"
246+
"(If NO TESTS are selected, then ALL TESTS will run)"
247247
% len(tests)
248248
)
249249
if len(tests) == 1:
250-
run_display = "Only ONE TEST was found: (Will be run automatically)"
250+
run_display = "Only ONE TEST was found: (Will run automatically)"
251251
tk.Label(root, text=run_display, fg="blue").pack()
252252
text_area = ScrolledText(
253253
root, width=100, height=12, wrap="word", state=tk.DISABLED

seleniumbase/console_scripts/sb_commander.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -243,11 +243,11 @@ def create_tkinter_gui(tests, command_string):
243243
tk.Label(root, text="").pack()
244244
run_display = (
245245
"Select from %s tests: "
246-
"(If NO TESTS are selected, then ALL TESTS will be run)"
246+
"(If NO TESTS are selected, then ALL TESTS will run)"
247247
% len(tests)
248248
)
249249
if len(tests) == 1:
250-
run_display = "Only ONE TEST was found: (Will be run automatically)"
250+
run_display = "Only ONE TEST was found: (Will run automatically)"
251251
tk.Label(root, text=run_display, fg="blue").pack()
252252
text_area = ScrolledText(
253253
root, width=100, height=12, wrap="word", state=tk.DISABLED

0 commit comments

Comments
 (0)