Skip to content

Commit 3910dda

Browse files
committed
(maint) rubocop: fix string quoting
1 parent 2c0d17e commit 3910dda

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

spec/spec_helper_acceptance.rb

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -73,9 +73,9 @@ def build_url(platform)
7373
# TODO: we should probably be using the relatively new postgresql
7474
# module settings manage_dnf_module on el8 when we are managing the postgresql
7575
# database
76-
if relver == "8"
77-
on host, "dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm"
78-
on host, "dnf -qy module disable postgresql"
76+
if relver == '8'
77+
on host, 'dnf install -y https://download.postgresql.org/pub/repos/yum/reporpms/EL-8-x86_64/pgdg-redhat-repo-latest.noarch.rpm'
78+
on host, 'dnf -qy module disable postgresql'
7979
end
8080
elsif host['platform'] =~ %r{fedora-(\d+)}
8181
relver = Regexp.last_match(1)

0 commit comments

Comments
 (0)