Skip to content

Commit

Permalink
Merge pull request #153 from mbj/remove/mutant-references-from-specs
Browse files Browse the repository at this point in the history
Change to use Unparser::Color in specs
  • Loading branch information
mbj authored Aug 25, 2020
2 parents 813ac91 + 8a74003 commit 90c7c79
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion Changelog.md
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
# v0.4.8 unreleased
# v0.4.8 2020-05-25

* Change to specific node type when unparser fails on an unknown node type: [#150](https://github.com/mbj/unparser/pull/150)
* Significantly improve verifier (only useful for debugging)
Expand Down
4 changes: 2 additions & 2 deletions spec/unit/unparser/diff_spec.rb
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@
let(:expectation) do
[
"@@ -1,3 +1,3 @@\n",
Mutant::Color::RED.format("-foo\n"),
Mutant::Color::GREEN.format("+baz\n"),
Unparser::Color::RED.format("-foo\n"),
Unparser::Color::GREEN.format("+baz\n"),
" bar\n"
].join
end
Expand Down
2 changes: 1 addition & 1 deletion unparser.gemspec
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
Gem::Specification.new do |gem|
gem.name = 'unparser'
gem.version = '0.4.7'
gem.version = '0.4.8'

gem.authors = ['Markus Schirp']
gem.email = 'mbj@schirp-dso.com'
Expand Down

0 comments on commit 90c7c79

Please sign in to comment.