Remove trailing white spaces from all source files

find . -name "*.js" -print | xargs sed -Ei s/[[:space:]]*$//
This commit is contained in:
Vojta Jina
2011-05-19 17:38:23 +02:00
committed by Igor Minar
parent 1abdc097b2
commit 805e083c24
4 changed files with 11 additions and 11 deletions

View File

@@ -11,7 +11,7 @@ describe('example.personalLog.LogCtrl', function() {
beforeEach(function() {
logCtrl = createNotesCtrl();
});
it('should initialize notes with an empty array', function() {
expect(logCtrl.logs).toEqual([]);
@@ -28,7 +28,7 @@ describe('example.personalLog.LogCtrl', function() {
it('should add newMsg to logs as a log entry', function() {
logCtrl.newMsg = 'first log message';
logCtrl.addLog();
expect(logCtrl.logs.length).toBe(1);
expect(logCtrl.logs[0].msg).toBe('first log message');