diff options
author | Teddy Wing | 2017-04-29 19:01:12 +0200 |
---|---|---|
committer | Teddy Wing | 2017-04-29 19:15:46 +0200 |
commit | e89275bc787ae17bc698ac8cdb8cdaf5ebeb7852 (patch) | |
tree | ebe41dbed568a8bdab864f1368ed75f0b9ce13cf | |
parent | 6d35a516a7e4cda93f79455b2b9b60d13ddd80fa (diff) | |
download | dbshell-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.rb | 2 |
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 |