Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
aduffeck committed Nov 10, 2022
1 parent aa305e3 commit bc87a26
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions tests/integration/grpc/gateway_storageprovider_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -477,7 +477,7 @@ var _ = Describe("gateway", func() {
info := statRes.Info
Expect(info.Type).To(Equal(storagep.ResourceType_RESOURCE_TYPE_CONTAINER))
Expect(utils.ResourceIDEqual(info.Id, homeRef.ResourceId)).To(BeTrue())
Expect(info.Path).To(Equal("")) // path of a root node of a space is always ""
Expect(info.Path).To(Equal(".")) // path of a root node of a space is always "."
Expect(info.Owner.OpaqueId).To(Equal(user.Id.OpaqueId))

// TODO: size aggregating is done by the client now - so no chance testing that here
Expand All @@ -492,7 +492,7 @@ var _ = Describe("gateway", func() {
info := statRes.Info
Expect(info.Type).To(Equal(storagep.ResourceType_RESOURCE_TYPE_CONTAINER))
Expect(utils.ResourceIDEqual(info.Id, embeddedRef.ResourceId)).To(BeTrue())
Expect(info.Path).To(Equal("")) // path of a root node of a space is always ""
Expect(info.Path).To(Equal(".")) // path of a root node of a space is always "."
Expect(info.Size).To(Equal(uint64(2)))
})

Expand Down

0 comments on commit bc87a26

Please sign in to comment.