Skip to content

Commit 8e41e9e

Browse files
committed
Upgrade common base to fix #39 + fmt
1 parent 9e366f7 commit 8e41e9e

File tree

2 files changed

+7
-7
lines changed

2 files changed

+7
-7
lines changed

Gopkg.lock

+4-4
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

gluster/integration/integration_test.go

+3-3
Original file line numberDiff line numberDiff line change
@@ -208,12 +208,12 @@ func TestIntegration(t *testing.T) {
208208
t.Errorf("Content inside gluster distributed volume in not the same : %s != %s", outDistributedContainer, out)
209209
}
210210
//TODO check persistence
211-
211+
212212
//TODO sub tests
213213
for _, vol := range []string{"distributed-double-server", "replica-double-server", "distributed", "replica"} {
214214
out, err = cmd("docker", "volume", "rm", vol)
215215
if err != nil {
216-
t.Errorf("Failed to remove mounted volume %s : %v", vol, err)
216+
t.Errorf("Failed to remove mounted volume %s : %v", vol, err)
217217
}
218218
if !strings.Contains(out, vol) { //TODO should be only "vol\n"
219219
t.Errorf("Failed to remove mounted volume %s", vol)
@@ -222,6 +222,6 @@ func TestIntegration(t *testing.T) {
222222
if strings.Contains(out, vol) { //TODO should be "vol\n" to limit confussion ith other volume existing or generate name
223223
t.Errorf("Failed to remove volume %s from volume list", vol)
224224
}
225-
}
225+
}
226226

227227
}

0 commit comments

Comments
 (0)