Skip to content
This repository was archived by the owner on Jun 18, 2026. It is now read-only.

Commit 38d24bb

Browse files
committed
fix(lint): fix remaining ArgumentAlignment violations in test
1 parent e4754bd commit 38d24bb

1 file changed

Lines changed: 2 additions & 2 deletions

File tree

test/controllers/docs/data_table_demo_controller_test.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -48,15 +48,15 @@ class Docs::DataTableDemoControllerTest < ActionDispatch::IntegrationTest
4848

4949
test "JSON response respects sort param ascending" do
5050
get docs_data_table_demo_path, params: {sort: "name", direction: "asc"},
51-
headers: {"Accept" => "application/json"}
51+
headers: {"Accept" => "application/json"}
5252
json = JSON.parse(response.body)
5353
names = json["data"].map { |r| r["name"] }
5454
assert_equal names.sort, names
5555
end
5656

5757
test "JSON response respects sort param descending" do
5858
get docs_data_table_demo_path, params: {sort: "name", direction: "desc"},
59-
headers: {"Accept" => "application/json"}
59+
headers: {"Accept" => "application/json"}
6060
json = JSON.parse(response.body)
6161
names = json["data"].map { |r| r["name"] }
6262
assert_equal names.sort.reverse, names

0 commit comments

Comments
 (0)