Skip to content

Commit 30a5185

Browse files
committed
gofmt
1 parent ff87fd8 commit 30a5185

File tree

2 files changed

+8
-8
lines changed

2 files changed

+8
-8
lines changed

delete_test.go

Lines changed: 5 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -63,7 +63,7 @@ func TestBoundedDelete(t *testing.T) {
6363
const (
6464
nilBoundValsErr = "accepted nil bound value"
6565
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."
6767
)
6868

6969
sm, _, err := newSortedMapFromRandRecords(300)
@@ -88,7 +88,7 @@ func TestBoundedDelete(t *testing.T) {
8888
func() {
8989
iterCh, err := sm.IterCh()
9090
if err != nil {
91-
91+
9292
} else {
9393
defer iterCh.Close()
9494

@@ -105,7 +105,7 @@ func TestBoundedDelete(t *testing.T) {
105105
func() {
106106
iterCh, err := sm.IterCh()
107107
if err != nil {
108-
108+
109109
} else {
110110
defer iterCh.Close()
111111

@@ -122,7 +122,7 @@ func TestBoundedDelete(t *testing.T) {
122122
func() {
123123
iterCh, err := sm.IterCh()
124124
if err != nil {
125-
125+
126126
} else {
127127
defer iterCh.Close()
128128

@@ -139,7 +139,7 @@ func TestBoundedDelete(t *testing.T) {
139139
func() {
140140
iterCh, err := sm.IterCh()
141141
if err != nil {
142-
142+
143143
} else {
144144
defer iterCh.Close()
145145

insert_test.go

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -23,7 +23,7 @@ func TestInsert(t *testing.T) {
2323
t.Fatal(err)
2424
} else {
2525
defer iterCh.Close()
26-
26+
2727
if err := verifyRecords(iterCh.Records(), false); err != nil {
2828
t.Fatal(err)
2929
}
@@ -42,7 +42,7 @@ func TestInsert(t *testing.T) {
4242
t.Fatal(err)
4343
} else {
4444
defer iterCh.Close()
45-
45+
4646
if err := verifyRecords(iterCh.Records(), false); err != nil {
4747
t.Fatal(err)
4848
}
@@ -67,7 +67,7 @@ func TestBatchInsert(t *testing.T) {
6767
t.Fatal(err)
6868
} else {
6969
defer iterCh.Close()
70-
70+
7171
if err := verifyRecords(iterCh.Records(), false); err != nil {
7272
t.Fatal(err)
7373
}

0 commit comments

Comments
 (0)