diff options
| author | Vojta Jina | 2011-05-19 17:38:23 +0200 |
|---|---|---|
| committer | Igor Minar | 2011-05-19 09:43:56 -0700 |
| commit | 805e083c243655bfaed3c5431dc0f402cb27fcb4 (patch) | |
| tree | 5b5c85e0429a13da3d3d73265926984dc0663800 /example/personalLog/test | |
| parent | 1abdc097b235366759a889bdcc68359653a9b8a3 (diff) | |
| download | angular.js-805e083c243655bfaed3c5431dc0f402cb27fcb4.tar.bz2 | |
Remove trailing white spaces from all source files
find . -name "*.js" -print | xargs sed -Ei s/[[:space:]]*$//
Diffstat (limited to 'example/personalLog/test')
| -rw-r--r-- | example/personalLog/test/personalLogSpec.js | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/example/personalLog/test/personalLogSpec.js b/example/personalLog/test/personalLogSpec.js index 7502ff21..3e6935a3 100644 --- a/example/personalLog/test/personalLogSpec.js +++ b/example/personalLog/test/personalLogSpec.js @@ -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'); |
