Skip to content

Commit 4545659

Browse files
committed
Fix SCEP Windows client integration test for Go 1.23
1 parent 69486d3 commit 4545659

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

test/integration/scep/windows_go1.23_test.go

+2-2
Original file line numberDiff line numberDiff line change
@@ -32,7 +32,7 @@ func TestIssuesCertificateToEmulatedWindowsClientGo123(t *testing.T) {
3232

3333
go func() {
3434
defer wg.Done()
35-
err := c.Run()
35+
err := c.run()
3636
require.ErrorIs(t, err, http.ErrServerClosed)
3737
}()
3838

@@ -49,7 +49,7 @@ func TestIssuesCertificateToEmulatedWindowsClientGo123(t *testing.T) {
4949
assert.Equal(t, "Step E2E | SCEP Regular w/ Windows Client Intermediate CA", cert.Issuer.CommonName)
5050

5151
// done testing; stop and wait for the server to quit
52-
err = c.Stop()
52+
err = c.stop()
5353
require.NoError(t, err)
5454

5555
wg.Wait()

0 commit comments

Comments
 (0)