Skip to content

Commit

Permalink
fix xdotool initialize command
Browse files Browse the repository at this point in the history
  • Loading branch information
leonovk committed Nov 4, 2023
1 parent 8198e17 commit f852626
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion lib/boaw/version.rb
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# frozen_string_literal: true

class Boaw
VERSION = '0.1.1'
VERSION = '0.1.2'
end
2 changes: 1 addition & 1 deletion lib/xdotool/adapter.rb
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,7 @@ module Xdotool
# Xdotool adapter for mouse control
class Adapter
def initialize
result = Kernel.system('xdotool')
result = Kernel.system('xdotool version')
raise BaseError if result.nil?
end

Expand Down
2 changes: 1 addition & 1 deletion test/lib/boaw/version_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,6 @@

class VersionTest < Minitest::Test
def test_version
assert_equal '0.1.1', Boaw::VERSION
assert_equal '0.1.2', Boaw::VERSION
end
end

0 comments on commit f852626

Please sign in to comment.