From 2ed29345f5dc5ca820b44a7dd1f3ef4eafccf88b Mon Sep 17 00:00:00 2001 From: utkarsh-extc <53217283+utkarsh-extc@users.noreply.github.com> Date: Fri, 2 Aug 2019 07:36:00 +0530 Subject: [PATCH] Update mgr_test.go --- windows/svc/mgr/mgr_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/windows/svc/mgr/mgr_test.go b/windows/svc/mgr/mgr_test.go index 2e60ae59..750ffe89 100644 --- a/windows/svc/mgr/mgr_test.go +++ b/windows/svc/mgr/mgr_test.go @@ -81,7 +81,7 @@ func testConfig(t *testing.T, s *mgr.Service, should mgr.Config) mgr.Config { t.Fatalf("Config failed: %s", err) } if should.DelayedAutoStart != is.DelayedAutoStart { - t.Fatalf("config mismatch: DelayedAutoStart is %t, but should have %t", is.DelayedAutoStart, should.DelayedAutoStart) + t.Fatalf("config mismatch: DelayedAutoStart is %v, but should have %v", is.DelayedAutoStart, should.DelayedAutoStart) } if should.DisplayName != is.DisplayName { t.Fatalf("config mismatch: DisplayName is %q, but should have %q", is.DisplayName, should.DisplayName)