Skip to content

Commit

Permalink
fixing staff student solution inconsistency (#14)
Browse files Browse the repository at this point in the history
  • Loading branch information
peyrin authored Jul 14, 2023
2 parents b0d8b5d + 4570d66 commit 2e21545
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions client_test/client_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -214,6 +214,11 @@ var _ = Describe("Client Tests", func() {
err = charles.AcceptInvitation("bob", invite, charlesFile)
Expect(err).To(BeNil())

userlib.DebugMsg("Checking that Bob can load the file.")
data, err = bob.LoadFile(bobFile)
Expect(err).To(BeNil())
Expect(data).To(Equal([]byte(contentOne)))

userlib.DebugMsg("Checking that Charles can load the file.")
data, err = charles.LoadFile(charlesFile)
Expect(err).To(BeNil())
Expand Down

0 comments on commit 2e21545

Please sign in to comment.