From 9eb7b22f47b3afef99e004174f30c63ab7e03986 Mon Sep 17 00:00:00 2001 From: Michael Shaw Date: Tue, 2 Aug 2022 16:18:36 -0400 Subject: [PATCH] changes in ethapi for ChainId always return something now --- test/direct_proxy_integration_test.go | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/test/direct_proxy_integration_test.go b/test/direct_proxy_integration_test.go index 22f44b41..ef2f5013 100644 --- a/test/direct_proxy_integration_test.go +++ b/test/direct_proxy_integration_test.go @@ -431,7 +431,7 @@ var _ = Describe("Integration test", func() { Expect(err).ToNot(HaveOccurred()) _, err = ipldClient.ChainID(ctx) - Expect(err).To(HaveOccurred()) + Expect(err).ToNot(HaveOccurred()) }) }) })