Skip to content

Commit

Permalink
✅ Remove t.Parallel in transaction_impl_test
Browse files Browse the repository at this point in the history
  • Loading branch information
H1rono committed Jul 14, 2024
1 parent d680332 commit 67fe943
Showing 1 changed file with 1 addition and 4 deletions.
5 changes: 1 addition & 4 deletions model/transaction_impl_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -12,7 +12,7 @@ import (
)

func TestEntRepository_GetTransactions(t *testing.T) {
t.Parallel()
//t.Parallel()
ctx := context.Background()
client, storage, err := setup(t, ctx, "get_transactions")
require.NoError(t, err)
Expand Down Expand Up @@ -443,7 +443,6 @@ func TestEntRepository_GetTransactions(t *testing.T) {
}

func TestEntRepository_GetTransaction(t *testing.T) {
t.Parallel()
ctx := context.Background()
client, storage, err := setup(t, ctx, "get_transaction")
require.NoError(t, err)
Expand Down Expand Up @@ -479,7 +478,6 @@ func TestEntRepository_GetTransaction(t *testing.T) {
}

func TestEntRepository_CreateTransaction(t *testing.T) {
t.Parallel()
ctx := context.Background()
client, storage, err := setup(t, ctx, "create_transaction")
require.NoError(t, err)
Expand Down Expand Up @@ -630,7 +628,6 @@ func TestEntRepository_CreateTransaction(t *testing.T) {
}

func TestEntRepository_UpdateTransaction(t *testing.T) {
t.Parallel()
ctx := context.Background()
client, storage, err := setup(t, ctx, "update_transaction")
require.NoError(t, err)
Expand Down

0 comments on commit 67fe943

Please sign in to comment.