From ccd510716edaf73eafa7554ce77240b1a19f313a Mon Sep 17 00:00:00 2001 From: Tommy McNeely Date: Thu, 5 Jul 2018 08:34:25 -0600 Subject: [PATCH] Fix #73 MySQL test default port should be 3306 --- spec/classes/jira_config_spec.rb | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/spec/classes/jira_config_spec.rb b/spec/classes/jira_config_spec.rb index 13b8aece..3e054ac4 100644 --- a/spec/classes/jira_config_spec.rb +++ b/spec/classes/jira_config_spec.rb @@ -47,7 +47,7 @@ it { is_expected.to contain_file('/opt/jira/atlassian-jira-6.3.4a-standalone/conf/server.xml') } it do is_expected.to contain_file('/home/jira/dbconfig.xml'). - with_content(%r{jdbc:mysql://localhost:5432/jira}) + with_content(%r{jdbc:mysql://localhost:3306/jira}) end end