Skip to content

Commit

Permalink
linting fixes
Browse files Browse the repository at this point in the history
Signed-off-by: Corey Hemminger <[email protected]>
  • Loading branch information
Stromweld committed Jun 18, 2024
1 parent de6081e commit e9da2d7
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 2 deletions.
4 changes: 4 additions & 0 deletions .yamllint.yml
Original file line number Diff line number Diff line change
@@ -0,0 +1,4 @@
---

rules:
line-length: disable
2 changes: 1 addition & 1 deletion CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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))
Expand Down
2 changes: 1 addition & 1 deletion test/integration/default/default_test.rb
Original file line number Diff line number Diff line change
Expand Up @@ -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

0 comments on commit e9da2d7

Please sign in to comment.