Merge branch 'patch-1' of https://github.com/eltociear/jasmine into main

* Fixes typo in spec name
* Merges #1918 from @eltociear
This commit is contained in:
Steve Gravrock
2021-06-13 09:57:23 -07:00
+1 -1
View File
@@ -213,7 +213,7 @@ describe('Spies', function() {
).toBe(1); ).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 }); var spyObj = env.createSpyObj({ m: 3 }, { p: 4 });
expect(spyObj.m()).toEqual(3); expect(spyObj.m()).toEqual(3);