Skip to content

Commit

Permalink
fix(ci): fix test error
Browse files Browse the repository at this point in the history
Signed-off-by: monkey92t <golang@88.com>
  • Loading branch information
monkey92t committed Apr 12, 2024
1 parent 41ba582 commit 30ad1fc
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 1 deletion.
1 change: 1 addition & 0 deletions .github/workflows/test-redis-enterprise.yml
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@ jobs:
run: |
go test \
--ginkgo.skip-file="ring_test.go" \
--ginkgo.skip-file="graph_test.go" \
--ginkgo.skip-file="sentinel_test.go" \
--ginkgo.skip-file="osscluster_test.go" \
--ginkgo.skip-file="pubsub_test.go" \
Expand Down
2 changes: 1 addition & 1 deletion graph_test.go
Original file line number Diff line number Diff line change
Expand Up @@ -44,7 +44,7 @@ var _ = Describe("Client", func() {
Expect(err).NotTo(HaveOccurred())
Expect(row).To(HaveLen(5))
Expect(row["id"].Int()).To(Equal(1024))
Expect(row["name"].Int()).To(Equal("foo"))
Expect(row["name"].String()).To(Equal("foo"))
Expect(row["pr"].Float64()).To(Equal(3.14))
Expect(row["success"].Bool()).To(BeTrue())
Expect(row["non"].IsNil()).To(BeTrue())
Expand Down

0 comments on commit 30ad1fc

Please sign in to comment.