Fix typo in SpySpec.js

ommitted -> omitted
This commit is contained in:
Ikko Ashimine
2021-06-12 10:00:36 +09:00
committed by GitHub
parent 0aee81cfb9
commit 4e1f36cbb0

View File

@@ -213,7 +213,7 @@ describe('Spies', function() {
).toBe(1);
});
it('allows base name to be ommitted when assigning methods and properties', function() {
it('allows base name to be omitted when assigning methods and properties', function() {
var spyObj = env.createSpyObj({ m: 3 }, { p: 4 });
expect(spyObj.m()).toEqual(3);