Browse Source

Fix quoting in Commands.pm for endpoints

Daniel Gempesaw 11 years ago
parent
commit
0c8f641320
1 changed files with 6 additions and 4 deletions
  1. 6 4
      lib/Selenium/Remote/Commands.pm

+ 6 - 4
lib/Selenium/Remote/Commands.pm

@@ -366,22 +366,24 @@ has '_cmds' => (
             },
             },
             'setGeolocation' => {
             'setGeolocation' => {
                 'method'             => 'POST',
                 'method'             => 'POST',
-                'url'                => "session/:sessionId/location",
+                'url'                => 'session/:sessionId/location',
                 'no_content_success' => 1
                 'no_content_success' => 1
             },
             },
             'getGeolocation'   => {
             'getGeolocation'   => {
                 'method'             => 'GET',
                 'method'             => 'GET',
-                'url'                => "session/:sessionId/location",
+                'url'                => 'session/:sessionId/location',
                 'no_content_success' => 0
                 'no_content_success' => 0
             },
             },
             'getLog' => {
             'getLog' => {
                 'method'             => 'POST',
                 'method'             => 'POST',
-                'url'                => "session/:sessionId/log",
+                'url'                => 'session/:sessionId/log',
                 'no_content_success' => 0
                 'no_content_success' => 0
             },
             },
             'getLogTypes'   => {
             'getLogTypes'   => {
                 'method'             => 'GET',
                 'method'             => 'GET',
-                'url'                => "session/:sessionId/log/types",
+                'url'                => 'session/:sessionId/log/types',
+                'no_content_success' => 0
+            },
                 'no_content_success' => 0
                 'no_content_success' => 0
             },
             },