Skip to content

Commit 2e21545

Browse files
authored
fixing staff student solution inconsistency (#14)
2 parents b0d8b5d + 4570d66 commit 2e21545

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

client_test/client_test.go

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -214,6 +214,11 @@ var _ = Describe("Client Tests", func() {
214214
err = charles.AcceptInvitation("bob", invite, charlesFile)
215215
Expect(err).To(BeNil())
216216

217+
userlib.DebugMsg("Checking that Bob can load the file.")
218+
data, err = bob.LoadFile(bobFile)
219+
Expect(err).To(BeNil())
220+
Expect(data).To(Equal([]byte(contentOne)))
221+
217222
userlib.DebugMsg("Checking that Charles can load the file.")
218223
data, err = charles.LoadFile(charlesFile)
219224
Expect(err).To(BeNil())

0 commit comments

Comments
 (0)