joseph-roitman / pytest-snapshot

A plugin for snapshot testing with pytest.
MIT License
117 stars 12 forks source link

0.6.0 Breaking multi-line comparisons in Windows styled files #31

Closed mshafer-NI closed 3 years ago

mshafer-NI commented 3 years ago

New (breaking) behavior in 0.6.0 on Windows to only use Line Feeds.

Example way to reproduce:

(if don't have poetry installed)

joseph-roitman commented 3 years ago

Thanks for the quick bug report. I mistakenly thought path.read_bytes().decode() was equivalent to path.read_text(), but read_text also modifies newlines. I will create a fix soon.

joseph-roitman commented 3 years ago

I fixed this in v0.6.1. Sorry for the bug and thanks again for the bug report.

mshafer-NI commented 3 years ago

Thank you for the quick response.