Skip to content

Commit 4dbf624

Browse files
committed
Merge pull request puppetlabs#570 from petems/MAINT-fix-spec-describe
(MAINT) Fixes incorrect rspec it description
2 parents 8b49b58 + d1c2144 commit 4dbf624

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

spec/unit/puppet/provider/postgresql_psql/ruby_spec.rb

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -70,7 +70,7 @@
7070
describe "with port string" do
7171
let(:attributes) do { :port => '5555' } end
7272

73-
it "executes with the given psql_path on the given DB" do
73+
it "executes with the given port" do
7474
expect(provider).to receive(:run_command).with(["psql",
7575
"-p", "5555",
7676
"-t", "-c", "SELECT something"],
@@ -82,7 +82,7 @@
8282
describe "with host string" do
8383
let(:attributes) do { :host => '127.0.0.1' } end
8484

85-
it "executes with the given psql_path on the given DB" do
85+
it "executes with the given host" do
8686
expect(provider).to receive(:run_command).with(["psql",
8787
"-h", "127.0.0.1",
8888
"-t", "-c",

0 commit comments

Comments
 (0)