Forráskód Böngészése

switched to lowercase

Benjamin Schweizer 7 éve
szülő
commit
a653b277f3

+ 1 - 1
public/app/features/templating/specs/template_srv.jest.ts

@@ -277,7 +277,7 @@ describe('templateSrv', function() {
 
     it('multi value and percentencode format should render percent-encoded string', function() {
       var result = _templateSrv.formatValue(['foo()bar BAZ', 'test2'], 'percentencode');
-      expect(result).toBe('%7Bfoo%28%29bar%20BAZ%2Ctest2%7D');
+      expect(result).toBe('%7bfoo%28%29bar%20BAZ%2ctest2%7d');
     });
 
     it('slash should be properly escaped in regex format', function() {