Fix tests

This commit is contained in:
Mathias Fredriksson
2020-10-20 21:16:16 +03:00
parent a50ad6ffd6
commit 420cf7bbfd
2 changed files with 5 additions and 5 deletions

View File

@@ -328,7 +328,7 @@ func openConn(t *testing.T, addr string, options ...DialOption) (*ftpMock, *Serv
// Helper to close a client connected to a mock server
func closeConn(t *testing.T, mock *ftpMock, c *ServerConn, commands []string) {
expected := []string{"FEAT", "USER", "PASS", "TYPE", "OPTS"}
expected := []string{"USER", "PASS", "FEAT", "TYPE", "OPTS"}
expected = append(expected, commands...)
expected = append(expected, "QUIT")