From e9da2d78f6c38fd39677517b9282824e6b419337 Mon Sep 17 00:00:00 2001 From: Corey Hemminger Date: Tue, 18 Jun 2024 18:26:48 -0500 Subject: [PATCH] linting fixes Signed-off-by: Corey Hemminger --- .yamllint.yml | 4 ++++ CHANGELOG.md | 2 +- test/integration/default/default_test.rb | 2 +- 3 files changed, 6 insertions(+), 2 deletions(-) create mode 100644 .yamllint.yml diff --git a/.yamllint.yml b/.yamllint.yml new file mode 100644 index 0000000..5574348 --- /dev/null +++ b/.yamllint.yml @@ -0,0 +1,4 @@ +--- + +rules: + line-length: disable \ No newline at end of file diff --git a/CHANGELOG.md b/CHANGELOG.md index d83aec7..dcdb903 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -223,7 +223,7 @@ [Full Changelog](https://github.com/test-kitchen/kitchen-vagrant/compare/v1.1.0...v1.1.1) -**Fixed Bugs** +### Fixed Bugs - Fix detection of vagrant-winrm plugin. [\#309](https://github.com/test-kitchen/kitchen-vagrant/pull/309) ([silverl](https://github.com/silverl)) - Fix bug in Vagrantfile template related to WinRM options. [\#306](https://github.com/test-kitchen/kitchen-vagrant/pull/306) ([aleksey-hariton](https://github.com/aleksey-hariton)) diff --git a/test/integration/default/default_test.rb b/test/integration/default/default_test.rb index 08c4153..95cc643 100644 --- a/test/integration/default/default_test.rb +++ b/test/integration/default/default_test.rb @@ -3,7 +3,7 @@ # The Chef InSpec reference, with examples and extensive documentation, can be # found at https://docs.chef.io/inspec/resources/ -user_name = os.windows? ? 'Administrator' : 'root' +user_name = os.windows? ? "Administrator" : "root" describe user(user_name) do it { should exist } end