Skip to content

Commit 90726ba

Browse files
committed
Do not echo queries from createdb
This command line argument was most likely leftover debug code.
1 parent 4d5664d commit 90726ba

1 file changed

Lines changed: 1 addition & 1 deletion

File tree

spec/helpers.rb

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -227,7 +227,7 @@ def initialize(name, port: 23456, postgresql_conf: '')
227227
def create_test_db
228228
trace "Creating the test DB"
229229
log_and_run @logfile, pg_bin_path('psql'), '-p', @port.to_s, '-e', '-c', 'DROP DATABASE IF EXISTS test', 'postgres'
230-
log_and_run @logfile, pg_bin_path('createdb'), '-p', @port.to_s, '-e', 'test'
230+
log_and_run @logfile, pg_bin_path('createdb'), '-p', @port.to_s, 'test'
231231
end
232232

233233
def connect

0 commit comments

Comments
 (0)