Skip to content

Commit 9b48e86

Browse files
committed
ci: revert symbol change
Signed-off-by: Grant Timmerman <timmerman+devrel@google.com>
1 parent a41a7c7 commit 9b48e86

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/integration/cloud_event_test.ts

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -57,7 +57,7 @@ describe("A CloudEvent", () => {
5757

5858
it("serializes as JSON with raw log", () => {
5959
const ce = new CloudEvent({ ...fixture, data: { lunch: "tacos" } });
60-
expect(ce.toString()).to.deep.equal(ce[Symbol.for("nodejs.util.inspect.custom")]());
60+
expect(ce.toString()).to.deep.equal(JSON.stringify(ce));
6161
});
6262

6363
it("Throw a validation error for invalid extension names", () => {

0 commit comments

Comments
 (0)