Skip to content

Commit

Permalink
Fix flaky aliasing test (#2644)
Browse files Browse the repository at this point in the history
The test occasionally fails with complaints about concurrent map writes.
We will just run it sequentially as before, that should fix the issue.


https://github.com/pulumi/pulumi-terraform-bridge/actions/runs/11938863967/attempts/1
  • Loading branch information
VenelinMartinov authored Nov 21, 2024
1 parent eb08aa8 commit 61027ed
Showing 1 changed file with 1 addition and 2 deletions.
3 changes: 1 addition & 2 deletions pkg/tfbridge/tokens_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -558,8 +558,7 @@ func TestTokenAliasing(t *testing.T) { //nolint:paralleltest
}
}

func TestTokenAliasing1(t *testing.T) {
t.Parallel()
func TestTokenAliasing1(t *testing.T) { //nolint:paralleltest
testTokenAliasing(t)
}

Expand Down

0 comments on commit 61027ed

Please sign in to comment.