aboutsummaryrefslogtreecommitdiff
path: root/objectid/objectid_test.go
diff options
context:
space:
mode:
Diffstat (limited to 'objectid/objectid_test.go')
-rw-r--r--objectid/objectid_test.go2
1 files changed, 2 insertions, 0 deletions
diff --git a/objectid/objectid_test.go b/objectid/objectid_test.go
index 7abeb963..ef191d39 100644
--- a/objectid/objectid_test.go
+++ b/objectid/objectid_test.go
@@ -47,6 +47,7 @@ func TestParseHexRoundtrip(t *testing.T) {
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
+ t.Parallel()
id, err := objectid.ParseHex(tt.algo, tt.hex)
if err != nil {
t.Fatalf("ParseHex failed: %v", err)
@@ -90,6 +91,7 @@ func TestParseHexErrors(t *testing.T) {
for _, tt := range tests {
t.Run(tt.name, func(t *testing.T) {
+ t.Parallel()
if _, err := objectid.ParseHex(tt.algo, tt.hex); err == nil {
t.Fatalf("expected ParseHex error")
}