Skip to content

Commit

Permalink
test: fix windows test imports
Browse files Browse the repository at this point in the history
  • Loading branch information
judwhite committed Jan 4, 2019
1 parent ce2cbc1 commit dac2c65
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion svc/svc_windows_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -5,6 +5,9 @@ package svc
import (
"errors"
"os"
"path/filepath"
"reflect"
"runtime"
"syscall"
"testing"
"time"
Expand Down Expand Up @@ -444,7 +447,6 @@ func testSignalNotify(t *testing.T, signal os.Signal, sig ...os.Signal) {
equal(t, 0, len(wsf.changes))
}


func equal(t *testing.T, expected, actual interface{}) {
if !reflect.DeepEqual(expected, actual) {
_, file, line, _ := runtime.Caller(1)
Expand Down

0 comments on commit dac2c65

Please sign in to comment.