Skip to content

Commit

Permalink
Update current version and fix a test fixture env var
Browse files Browse the repository at this point in the history
  • Loading branch information
Michael Chmielewski committed Nov 6, 2020
1 parent 5017ec7 commit 0158370
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion .kitchen.yml
Original file line number Diff line number Diff line change
Expand Up @@ -118,5 +118,5 @@ suites:
deploy_key: <%= ENV['TS_DEPLOY_KEY'] != nil ? ENV['TS_DEPLOY_KEY'] : nil %>
url: <%= ENV['TS_URL'] != nil ? ENV['TS_URL'] : nil %>
version: <%= ENV['TS_PACKAGE_VERSION'] != nil ? ENV['TS_PACKAGE_VERSION'] : nil %>
agent_config_args: <%= ENV['TS_CONFIG_ARGS'] != [] ? ENV['TS_CONFIG_ARGS'] : ['log.maxSize 22'] %>
agent_config_args: <%= ENV['TS_CONFIG_ARGS'] != nil ? ENV['TS_CONFIG_ARGS'] : ['log.maxSize 22'] %>
configure_agent: <%= ENV['TS_CONFIG_AGENT'] == '0' ? false : true %>
2 changes: 1 addition & 1 deletion test/cookbooks/install_old_agent/attributes/default.rb
Original file line number Diff line number Diff line change
@@ -1,2 +1,2 @@
default['threatstack']['old_version'] = '2.1.3'
default['threatstack']['version'] = '2.2.3'
default['threatstack']['version'] = '2.3.0'
2 changes: 1 addition & 1 deletion test/integration/upgrades/serverspec/default_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
set :backend, :exec

# Version to expect on install. Change this when we bump versions
current_version = '2.2.3'
current_version = '2.3.0'

describe package('threatstack-agent') do
it { should be_installed }
Expand Down

0 comments on commit 0158370

Please sign in to comment.