Merge pull request #18706 from civicrm/5.30
[civicrm-core.git] / tests / karma / unit / crmJsonComparator.js
index 8380ba7951a663d0e65f75efa6cb6cc00f8d3003..d4b668cf4fea854acc1ddc5af051acd12dba29f8 100644 (file)
@@ -10,7 +10,7 @@ describe('crmJsonComparator', function() {
   beforeEach(function() {
     inject(function(crmJsonComparator) {
       comparator = crmJsonComparator;
-    }); 
+    });
   });
 
   it('should return false when comparing different objects', function() {
@@ -23,7 +23,7 @@ describe('crmJsonComparator', function() {
     expect(result.pass).toBe(true);
   });
 
-  it('should explain what part of the comparison failed when comparing objects', function() { 
+  it('should explain what part of the comparison failed when comparing objects', function() {
     var result = comparator.compare({'foo': 'bar'}, {'bar': 'foo'});
     expect(result.message).toBe('Could not find key \'bar\' in actual data at root.');
   });