From 4736462baa1fb0188393cc18ec827a9f1546984c Mon Sep 17 00:00:00 2001 From: Jerry Cheung Date: Thu, 3 May 2012 04:12:59 -0700 Subject: [PATCH] use 1.8 hash syntax on integration_servers --- spec/support/integration_servers.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/support/integration_servers.rb b/spec/support/integration_servers.rb index 36ae85acc..4b43569c6 100644 --- a/spec/support/integration_servers.rb +++ b/spec/support/integration_servers.rb @@ -4,7 +4,7 @@ module Integration class Streaming < Grape::API - get '/stream', stream: true do + get '/stream', :stream => true do status 202 count = 0 EM.add_timer(0.1) {flush "ohai "}