1
0
mirror of https://github.com/v2fly/v2ray-core.git synced 2025-07-05 16:38:17 -04:00

integrate ioutil migration in test

Some inconsistent change have been introduced in a previous version of ioutil migration(0c3105691f607bf8e9c9ade376a78b49a1c440a7).
This commit is contained in:
Shelikhoo 2021-09-29 09:25:23 +01:00
parent 2fcddf1966
commit 52d414fa49
No known key found for this signature in database
GPG Key ID: AA7BC347968E7DB1
3 changed files with 2 additions and 3 deletions

View File

@ -5,7 +5,7 @@ import (
"crypto/rand" "crypto/rand"
"fmt" "fmt"
"io" "io"
"io/ioutil" "os"
"os/exec" "os/exec"
"path/filepath" "path/filepath"
"runtime" "runtime"

View File

@ -3,7 +3,7 @@ package scenarios
import ( import (
"context" "context"
"google.golang.org/protobuf/types/known/anypb" "google.golang.org/protobuf/types/known/anypb"
"io/ioutil" "io"
"net/http" "net/http"
"net/url" "net/url"
"testing" "testing"

View File

@ -5,7 +5,6 @@ import (
"context" "context"
"crypto/rand" "crypto/rand"
"io" "io"
"io/ioutil"
"net/http" "net/http"
"net/url" "net/url"
"testing" "testing"