Skip to content

Commit

Permalink
Goftm files
Browse files Browse the repository at this point in the history
  • Loading branch information
bendahl committed Apr 22, 2018
1 parent 7e78aef commit fa76d4e
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion keyboard.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package uinput

import (
"fmt"
"io"
"os"
"fmt"
)

// A Keyboard is an key event output device. It is used to
Expand Down
2 changes: 1 addition & 1 deletion mouse.go
Original file line number Diff line number Diff line change
@@ -1,9 +1,9 @@
package uinput

import (
"fmt"
"io"
"os"
"fmt"
)

// A Mouse is a device that will trigger an absolute change event.
Expand Down
4 changes: 2 additions & 2 deletions uinput_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ func TestValidateDevicePathEmptyPathPanics(t *testing.T) {
if r := recover(); r != nil {
actual := r.(string)
if actual != expected {
t.Fatalf("Expected: %s\nActual: %s", expected, actual )
t.Fatalf("Expected: %s\nActual: %s", expected, actual)
}
}
}()
Expand All @@ -23,7 +23,7 @@ func TestValidateDevicePathInvalidPathPanics(t *testing.T) {
if r := recover(); r != nil {
actual := r.(string)
if actual != expected {
t.Fatalf("Expected: %s\nActual: %s", expected, actual )
t.Fatalf("Expected: %s\nActual: %s", expected, actual)
}
}
}()
Expand Down

0 comments on commit fa76d4e

Please sign in to comment.