fix: lint warning

This commit is contained in:
lilong.129
2024-11-23 15:13:56 +08:00
parent ef37d88e0b
commit 9293c05a66
7 changed files with 13 additions and 7 deletions
+2 -1
View File
@@ -997,9 +997,10 @@ func (wd *wdaDriver) GetDriverResults() []*DriverResult {
return wd.Driver.driverResults
}
func (wd *wdaDriver) TearDown() {
func (wd *wdaDriver) TearDown() error {
wd.mjpegClient.CloseIdleConnections()
wd.client.CloseIdleConnections()
return nil
}
type rawResponse []byte