diff --git a/model/transaction_impl_test.go b/model/transaction_impl_test.go index 1e22a3ef..0212ea3d 100644 --- a/model/transaction_impl_test.go +++ b/model/transaction_impl_test.go @@ -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) @@ -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) @@ -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) @@ -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)