Commit 49d8a62e authored by Phil Hughes's avatar Phil Hughes

fixed karma specs with change in icon name

parent 8fba385e
...@@ -28,7 +28,7 @@ describe('IDE changed file icon', () => { ...@@ -28,7 +28,7 @@ describe('IDE changed file icon', () => {
it('equals file-addition when a temp file', () => { it('equals file-addition when a temp file', () => {
vm.file.tempFile = true; vm.file.tempFile = true;
expect(vm.changedIcon).toBe('file-addition'); expect(vm.changedIcon).toBe('file-additions');
}); });
}); });
......
...@@ -73,7 +73,7 @@ describe('Multi-file editor commit sidebar list item', () => { ...@@ -73,7 +73,7 @@ describe('Multi-file editor commit sidebar list item', () => {
it('returns addition when not a tempFile', () => { it('returns addition when not a tempFile', () => {
f.tempFile = true; f.tempFile = true;
expect(vm.iconName).toBe('file-addition'); expect(vm.iconName).toBe('file-additions');
}); });
}); });
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment