Skip to content

Commit

Permalink
re-enable parallel on some tests
Browse files Browse the repository at this point in the history
  • Loading branch information
thehowl committed May 23, 2024
1 parent bc5176b commit db5fc7d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions tm2/pkg/crypto/keys/client/add_ledger_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,8 @@ func TestAdd_Ledger(t *testing.T) {
t.Cleanup(func() { ledger.Discover = ledger.DiscoverDefault })

t.Run("valid ledger reference added", func(t *testing.T) {
t.Parallel()

var (
kbHome = t.TempDir()
baseOptions = BaseOptions{
Expand Down Expand Up @@ -58,6 +60,8 @@ func TestAdd_Ledger(t *testing.T) {
})

t.Run("valid ledger reference added, overwrite", func(t *testing.T) {
t.Parallel()

var (
kbHome = t.TempDir()
baseOptions = BaseOptions{
Expand Down Expand Up @@ -109,6 +113,8 @@ func TestAdd_Ledger(t *testing.T) {
})

t.Run("valid ledger reference added, no overwrite permission", func(t *testing.T) {
t.Parallel()

var (
kbHome = t.TempDir()
baseOptions = BaseOptions{
Expand Down

0 comments on commit db5fc7d

Please sign in to comment.