Skip to content

Commit

Permalink
fix: linting
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 b79da91 commit ea35480
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 9 deletions.
1 change: 0 additions & 1 deletion .rubocop.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,6 @@
require: [chefstyle]

AllCops:
TargetRubyVersion: 3.2
Include:
- "**/*.rb"
Exclude:
Expand Down
8 changes: 4 additions & 4 deletions Gemfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,11 +5,11 @@ source "https://rubygems.org"
gemspec

group :test do
gem 'bundler'
gem 'rake'
gem 'rspec', '>= 3.2'
gem "bundler"
gem "rake"
gem "rspec", ">= 3.2"
end

group :chefstyle do
gem 'chefstyle', '>= 2.2.3'
gem "chefstyle", ">= 2.2.3"
end
8 changes: 4 additions & 4 deletions spec/version_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -17,13 +17,13 @@
# See the License for the specific language governing permissions and
# limitations under the License.

require 'spec_helper'
require 'kitchen/driver/version'
require "spec_helper"
require "kitchen/driver/version"

describe Kitchen::Driver::WORKFLOW_TESTING_VERSION do
let(:expected_version) { '1.0.0' } # replace with your expected version
let(:expected_version) { "1.0.0" } # replace with your expected version

it 'has the correct version' do
it "has the correct version" do
expect(Kitchen::Driver::WORKFLOW_TESTING_VERSION::STRING).to eq(expected_version)
end
end

0 comments on commit ea35480

Please sign in to comment.