aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorTeddy Wing2017-04-29 19:01:12 +0200
committerTeddy Wing2017-04-29 19:15:46 +0200
commite89275bc787ae17bc698ac8cdb8cdaf5ebeb7852 (patch)
treeebe41dbed568a8bdab864f1368ed75f0b9ce13cf
parent6d35a516a7e4cda93f79455b2b9b60d13ddd80fa (diff)
downloaddbshell-rails-e89275bc787ae17bc698ac8cdb8cdaf5ebeb7852.tar.bz2
postgres_client_spec.rb: Use integer port instead of string
Match the expected type with the input.
-rw-r--r--spec/dbshell/postgres_client_spec.rb2
1 files changed, 1 insertions, 1 deletions
diff --git a/spec/dbshell/postgres_client_spec.rb b/spec/dbshell/postgres_client_spec.rb
index 0773778..2f767f1 100644
--- a/spec/dbshell/postgres_client_spec.rb
+++ b/spec/dbshell/postgres_client_spec.rb
@@ -18,7 +18,7 @@ describe DBShell::PostgresClient do
'-h',
'mailmarehost',
'-p',
- '6027',
+ 6027,
'dbname'
])
end