aboutsummaryrefslogtreecommitdiff
path: root/map_test.go
diff options
context:
space:
mode:
Diffstat (limited to '')
-rw-r--r--cmap/map_test.go (renamed from map_test.go)6
1 files changed, 3 insertions, 3 deletions
diff --git a/map_test.go b/cmap/map_test.go
index b131207..c407c18 100644
--- a/map_test.go
+++ b/cmap/map_test.go
@@ -4,7 +4,7 @@
// Use of this source code is governed by a BSD-style
// license that can be found in the LICENSE file.
-package lindenii_common_test
+package cmap_test
import (
"math/rand"
@@ -12,13 +12,13 @@ import (
"sync"
"testing"
- lindenii_common "go.lindenii.runxiyu.org/lindenii-common"
+ "go.lindenii.runxiyu.org/lindenii-common/cmap"
)
func TestConcurrentRange(t *testing.T) {
const mapSize = 1 << 10
- m := new(lindenii_common.Map[int64, int64])
+ m := new(cmap.Map[int64, int64])
for n := int64(1); n <= mapSize; n++ {
m.Store(n, int64(n))
}