Skip to content

Commit

Permalink
fixed spelling in test descriptions
Browse files Browse the repository at this point in the history
  • Loading branch information
yrudman committed Jan 11, 2019
1 parent 444f9f8 commit b2615d6
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions spec/models/miq_report/import_export_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -40,7 +40,7 @@
expect(imported_report["user_id"]).to eq(@some_user.id)
end

it "does not preserves user_id when 'userid' is present in saved report but user does not exist" do
it "does not preserve user_id when 'userid' is present in saved report but user does not exist" do
@some_user.delete
imported_report, _ = subject
expect(imported_report["user_id"]).to be nil
Expand All @@ -51,7 +51,7 @@
expect(imported_report["miq_group_id"]).to eq(@some_group.id)
end

it "does not preserves miq_group_id when 'group_description' is present in saved report but group does not exist" do
it "does not preserve miq_group_id when 'group_description' is present in saved report but group does not exist" do
@some_group.delete
imported_report, _ = subject
expect(imported_report["miq_group_id"]).to be nil
Expand Down

0 comments on commit b2615d6

Please sign in to comment.