diff --git a/spec/to-be-observable.spec.ts b/spec/to-be-observable.spec.ts index 4f6f46a..1db752b 100644 --- a/spec/to-be-observable.spec.ts +++ b/spec/to-be-observable.spec.ts @@ -80,7 +80,7 @@ describe("toBeObservable matcher test", () => { })})); }); - it("Should pass if the two objects hacve the same properties but in different order", () => { + it("Should pass if the two objects have the same properties but in different order", () => { const e$ = hot("-a", { a: { someprop: "hey", b: 1 }}); expect(e$).toBeObservable(cold("-b", { b: { b: 1, someprop: "hey" }})); });