Skip to content

Commit b369aa9

Browse files
committed
fix(rubocop): fix remaining errors manually
1 parent 37b0c43 commit b369aa9

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

test/integration/default/controls/command_spec.rb

+5-1
Original file line numberDiff line numberDiff line change
@@ -9,6 +9,10 @@
99

1010
# Can't use `%Q` here due to the `\`
1111
describe command("su - postgres -c 'psql -p" + pg_port + %q( -qtc "\l+ db2"')) do
12-
its(:stdout) { should match(/db2.*remoteUser.*UTF8.*en_US.UTF-8.*en_US.UTF-8.*my_space/) }
12+
its(:stdout) do
13+
should match(
14+
/db2.*remoteUser.*UTF8.*en_US.UTF-8.*en_US.UTF-8.*my_space/
15+
)
16+
end
1317
end
1418
end

0 commit comments

Comments
 (0)