Skip to content

Commit

Permalink
Merge pull request #116 from r3inbowari/fix/test1
Browse files Browse the repository at this point in the history
fix: TestDynamicRate error
  • Loading branch information
r3inbowari authored Mar 4, 2023
2 parents ae7fe28 + a7ddbc8 commit a98946d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions speedtest/data_manager_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -74,15 +74,15 @@ func TestDynamicRate(t *testing.T) {
server, _ := CustomServer("http://shenzhen.cmcc.speedtest.shunshiidc.com:8080/speedtest/upload.php")
//server, _ := CustomServer("http://192.168.5.237:8080/speedtest/upload.php")

err := server.DownloadTest(false)
err := server.DownloadTest()
if err != nil {
fmt.Println("Warning: not found server")
//t.Error(err)
}

GlobalDataManager.Wait()

err = server.UploadTest(false)
err = server.UploadTest()
if err != nil {
fmt.Println("Warning: not found server")
//t.Error(err)
Expand Down

0 comments on commit a98946d

Please sign in to comment.