From a80ef26c42e12c6cc7276be90f3a5af7b8b7571e Mon Sep 17 00:00:00 2001
From: Niklas von Hertzen <niklasvh@gmail.com>
Date: Wed, 29 May 2013 22:13:22 +0300
Subject: [PATCH] http->https

---
 tests/selenium.js | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/tests/selenium.js b/tests/selenium.js
index 507569f..963a7f7 100644
--- a/tests/selenium.js
+++ b/tests/selenium.js
@@ -141,7 +141,7 @@
 
     function httpget(options) {
         return Bacon.fromCallback(function(callback) {
-            http.get(options, function(res){
+            https.get(options, function(res){
                 var data = '';
 
                 res.on('data', function (chunk){