Skip to content

Commit c1f026c

Browse files
committed
Fix syntax error in older rubies
1 parent bc39df5 commit c1f026c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

spec/client_spec.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -134,7 +134,7 @@
134134
stub_request(:get, api_path).to_return({
135135
:status => 200,
136136
:body => MultiJson.encode({
137-
'users': [{ 'id' => 1 }]
137+
'users' => [{ 'id' => 1 }]
138138
})
139139
})
140140
expect(@client.channel_users('mychannel')).to eq({

0 commit comments

Comments
 (0)