Skip to content

Commit a5dda44

Browse files
committed
Fix unit test failures
1 parent 331267f commit a5dda44

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

test/unit/model/installable-item-test.js

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -447,7 +447,7 @@ describe('InstallableItem', function() {
447447
it('returns \'Previously Downloaded\' if item is downloaded and size is more than 0', function() {
448448
item.downloaded = true;
449449
item.size = 100;
450-
expect(item.getDownloadStatus()).equals('Previously Downloaded');
450+
expect(item.getDownloadStatus()).equals('Previously downloaded');
451451
});
452452
});
453453

0 commit comments

Comments
 (0)