File tree 2 files changed +8
-8
lines changed 2 files changed +8
-8
lines changed Original file line number Diff line number Diff line change @@ -63,7 +63,7 @@ func TestBoundedDelete(t *testing.T) {
63
63
const (
64
64
nilBoundValsErr = "accepted nil bound value"
65
65
generalBoundsErr = "general bounds error"
66
- shouldFailErr = "Equal bound values that do not match a stored value should always fail."
66
+ shouldFailErr = "Equal bound values that do not match a stored value should always fail."
67
67
)
68
68
69
69
sm , _ , err := newSortedMapFromRandRecords (300 )
@@ -88,7 +88,7 @@ func TestBoundedDelete(t *testing.T) {
88
88
func () {
89
89
iterCh , err := sm .IterCh ()
90
90
if err != nil {
91
-
91
+
92
92
} else {
93
93
defer iterCh .Close ()
94
94
@@ -105,7 +105,7 @@ func TestBoundedDelete(t *testing.T) {
105
105
func () {
106
106
iterCh , err := sm .IterCh ()
107
107
if err != nil {
108
-
108
+
109
109
} else {
110
110
defer iterCh .Close ()
111
111
@@ -122,7 +122,7 @@ func TestBoundedDelete(t *testing.T) {
122
122
func () {
123
123
iterCh , err := sm .IterCh ()
124
124
if err != nil {
125
-
125
+
126
126
} else {
127
127
defer iterCh .Close ()
128
128
@@ -139,7 +139,7 @@ func TestBoundedDelete(t *testing.T) {
139
139
func () {
140
140
iterCh , err := sm .IterCh ()
141
141
if err != nil {
142
-
142
+
143
143
} else {
144
144
defer iterCh .Close ()
145
145
Original file line number Diff line number Diff line change @@ -23,7 +23,7 @@ func TestInsert(t *testing.T) {
23
23
t .Fatal (err )
24
24
} else {
25
25
defer iterCh .Close ()
26
-
26
+
27
27
if err := verifyRecords (iterCh .Records (), false ); err != nil {
28
28
t .Fatal (err )
29
29
}
@@ -42,7 +42,7 @@ func TestInsert(t *testing.T) {
42
42
t .Fatal (err )
43
43
} else {
44
44
defer iterCh .Close ()
45
-
45
+
46
46
if err := verifyRecords (iterCh .Records (), false ); err != nil {
47
47
t .Fatal (err )
48
48
}
@@ -67,7 +67,7 @@ func TestBatchInsert(t *testing.T) {
67
67
t .Fatal (err )
68
68
} else {
69
69
defer iterCh .Close ()
70
-
70
+
71
71
if err := verifyRecords (iterCh .Records (), false ); err != nil {
72
72
t .Fatal (err )
73
73
}
You can’t perform that action at this time.
0 commit comments