Skip to content

Commit

Permalink
allow Echo as json encoding library
Browse files Browse the repository at this point in the history
  • Loading branch information
bbrodriges committed Sep 4, 2024
1 parent 7b95dd6 commit 340cd41
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions cmd/metricstest/iteration7_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -10,10 +10,9 @@ import (
"syscall"
"time"

"github.com/Yandex-Practicum/go-autotests/internal/fork"
"github.com/go-resty/resty/v2"
"github.com/stretchr/testify/suite"

"github.com/Yandex-Practicum/go-autotests/internal/fork"
)

type Iteration7Suite struct {
Expand Down Expand Up @@ -46,6 +45,7 @@ func (suite *Iteration7Suite) SetupSuite() {
{Name: "encoding/json"},
{Name: "github.com/mailru/easyjson"},
{Name: "github.com/pquerna/ffjson"},
{Name: "github.com/labstack/echo"},
}

suite.serverAddress = "http://localhost:8080"
Expand Down
4 changes: 2 additions & 2 deletions cmd/shortenertestbeta/iteration7_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -9,10 +9,9 @@ import (
"syscall"
"time"

"github.com/Yandex-Practicum/go-autotests/internal/fork"
"github.com/go-resty/resty/v2"
"github.com/stretchr/testify/suite"

"github.com/Yandex-Practicum/go-autotests/internal/fork"
)

// Iteration7Suite является сьютом с тестами и состоянием для инкремента
Expand All @@ -36,6 +35,7 @@ func (suite *Iteration7Suite) SetupSuite() {
"encoding/json",
"github.com/mailru/easyjson",
"github.com/pquerna/ffjson",
"github.com/labstack/echo",
}

suite.serverAddress = "http://localhost:8080"
Expand Down

0 comments on commit 340cd41

Please sign in to comment.