use old hashrocket syntax

This commit is contained in:
Tyler Constantin 2015-03-23 07:56:18 -05:00
parent a748747a8a
commit c665a51970
2 changed files with 2 additions and 2 deletions

View File

@ -4,7 +4,7 @@ describe Thing, :type => :model do
it { is_expected.to be_versioned }
describe "should not store object_changes", :versioning => true do
let(:thing) { Thing.create(name: "pencil") }
let(:thing) { Thing.create(:name =>"pencil") }
it { expect(thing.versions.last.object_changes).to be_nil }
end

View File

@ -1,3 +1,3 @@
class Thing < ActiveRecord::Base
has_paper_trail save_changes: false
has_paper_trail :save_changes => false
end