Skip to content

Commit 7af114b

Browse files
committed
Fix the build after PR #9
1 parent 179bff9 commit 7af114b

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

test/controllers/web_console/console_sessions_controller_test.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ class ConsoleSessionsControllerTest < ActionController::TestCase
6161
get :index, use_route: 'web_console'
6262

6363
assert_not_nil console_session = assigns(:console_session)
64-
console_session.expects(:configure).with('width' => '80', 'height' => '24')
64+
console_session.expects(:configure).with('id' => console_session.pid.to_s, 'width' => '80', 'height' => '24')
6565

6666
put :configuration, id: console_session.pid, width: 80, height: 24, use_route: 'web_console'
6767
assert_response :success

0 commit comments

Comments
 (0)