Skip to content

Commit

Permalink
Merge pull request #5261 from os-autoinst/okurz-patch-1
Browse files Browse the repository at this point in the history
docs: Use consistent singe-ticks in python code example
  • Loading branch information
mergify[bot] authored Jul 25, 2023
2 parents d4fd507 + 693c4c5 commit a0f549d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions docs/WritingTests.asciidoc
Original file line number Diff line number Diff line change
Expand Up @@ -176,11 +176,11 @@ def run(self):
assert_screen('openqa-search-results')
# import further Perl-based libraries (besides `testapi`)
perl.require("x11utils")
perl.require('x11utils')
# use imported Perl-based libraries; call Perl function that would be called via "named arguments" in Perl
# note: In Perl the call would have been: x11_start_program('flatpak run com.obsproject.Studio', target_match => 'obsproject-wizard')
perl.x11utils.x11_start_program("flatpak run com.obsproject.Studio", "target_match", "obsproject-wizard")
perl.x11utils.x11_start_program('flatpak run com.obsproject.Studio', 'target_match', 'obsproject-wizard')
def switch_to_root_console():
send_key('ctrl-alt-f3')
Expand Down

0 comments on commit a0f549d

Please sign in to comment.