Skip to content
This repository has been archived by the owner on Dec 23, 2024. It is now read-only.

Commit

Permalink
correct method name
Browse files Browse the repository at this point in the history
  • Loading branch information
Talkytitan5127 committed Mar 19, 2024
1 parent c8fb334 commit 6326ace
Showing 1 changed file with 5 additions and 4 deletions.
9 changes: 5 additions & 4 deletions tests/integration/integration_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -2,12 +2,13 @@ package integration

import (
"context"
"github.com/KaymeKaydex/go-vshard-router"
"log"
"os"
"testing"
"time"

vshard_router "github.com/KaymeKaydex/go-vshard-router"

"github.com/google/uuid"
"github.com/stretchr/testify/assert"
"github.com/tarantool/go-tarantool/v2"
Expand Down Expand Up @@ -48,7 +49,7 @@ func TestReplicasetCall(t *testing.T) {
var isReady bool

for _, rs := range router.RouterRouteAll() {
_, getTypedResp, err := rs.ReplicasetCallImpl(
_, getTypedResp, err := rs.ReplicaCall(
ctx,
vshard_router.ReplicasetCallOpts{
PoolMode: pool.RW,
Expand All @@ -75,7 +76,7 @@ func TestReplicasetCall(t *testing.T) {
)

for _, rs := range router.RouterRouteAll() {
_, getTypedResp, err := rs.ReplicasetCallImpl(
_, getTypedResp, err := rs.ReplicaCall(
ctx,
vshard_router.ReplicasetCallOpts{
PoolMode: pool.RW,
Expand All @@ -96,7 +97,7 @@ func TestReplicasetCall(t *testing.T) {
}

for _, rs := range router.RouterRouteAll() {
_, _, err := rs.ReplicasetCallImpl(
_, _, err := rs.ReplicaCall(
ctx,
vshard_router.ReplicasetCallOpts{
PoolMode: pool.RW,
Expand Down

0 comments on commit 6326ace

Please sign in to comment.