Skip to content

Commit

Permalink
linting
Browse files Browse the repository at this point in the history
  • Loading branch information
Martin Fenner committed Mar 6, 2020
1 parent 58a1004 commit 9811fb1
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 2 additions & 2 deletions spec/models/activity_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -57,7 +57,7 @@
expect(activity.auditable.uid).to eq(provider.uid)

expect(activity.request_uuid).to be_present
expect(activity.changes).to eq("non_profit_status"=>["non-profit", "for-profit"])
expect(activity.changes).to eq("non_profit_status" => ["non-profit", "for-profit"])
end
end

Expand Down Expand Up @@ -86,7 +86,7 @@
expect(activity.auditable.uid).to eq(client.uid)

expect(activity.request_uuid).to be_present
expect(activity.changes).to eq("client_type"=>["repository", "periodical"])
expect(activity.changes).to eq("client_type" => ["repository", "periodical"])
end
end
end
2 changes: 1 addition & 1 deletion spec/models/provider_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -206,7 +206,7 @@

describe "activities" do
subject { build(:provider) }

it "is valid" do
expect(subject.save).to be true
expect(subject.errors.details).to be_empty
Expand Down

0 comments on commit 9811fb1

Please sign in to comment.