Skip to content

Commit

Permalink
Fix linter
Browse files Browse the repository at this point in the history
  • Loading branch information
brunograsselli committed May 16, 2024
1 parent c937d0e commit 67a2c08
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
1 change: 0 additions & 1 deletion lib/droplet_kit/mappings/vpc_peering_mapping.rb
Original file line number Diff line number Diff line change
Expand Up @@ -27,4 +27,3 @@ class VPCPeeringMapping
end
end
end

4 changes: 2 additions & 2 deletions spec/lib/droplet_kit/resources/vpc_peering_resource_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -15,7 +15,7 @@
match do |vpc_peering|
expect(vpc_peering.id).to eq('6e9bff8e-2d65-4301-9a48-f80a25ad89fa')
expect(vpc_peering.name).to eq('my-new-vpc-peering-1')
expect(vpc_peering.vpc_ids).to eq(["880b7f98-f062-404d-b33c-458d545696f6","be76c5b4-c6c4-4fbb-a710-edbfe76c1982"])
expect(vpc_peering.vpc_ids).to eq(%w[880b7f98-f062-404d-b33c-458d545696f6 be76c5b4-c6c4-4fbb-a710-edbfe76c1982])
expect(vpc_peering.created_at).to eq('2024-04-03T21:48:41.995304079Z')
expect(vpc_peering.status).to eq('ACTIVE')
end
Expand Down Expand Up @@ -47,7 +47,7 @@
end
end

context 'create, update and patch' do
context 'when creating, updating and patching' do
let(:vpc_peering) do
DropletKit::VPCPeering.new(
name: 'example-vpc-peering'
Expand Down

0 comments on commit 67a2c08

Please sign in to comment.