mirror of
https://github.com/nushell/nushell.git
synced 2025-07-17 23:02:00 +02:00
.cargo
.githooks
.github
assets
benches
crates
docker
scripts
src
tests
assets
const_
eval
fixtures
hooks
samples
mod.rs
modules
overlays
parsing
path
plugins
scope
shell
main.rs
wix
.gitignore
.typos.toml
CODE_OF_CONDUCT.md
CONTRIBUTING.md
Cargo.lock
Cargo.toml
Cross.toml
LICENSE
README.md
codecov.yml
rust-toolchain.toml
toolkit.nu
# Description This PR is just a minor development improvement. While working on another feature, I noticed that the root crate lists the super useful `pretty_assertions` in the root crate but doesn't use it in most tests. With this change `pretty_assertions::assert_eq!` is used instead of `core::assert_eq!` for better diffs when debugging the tests. I thought of adding the dependency to other crates but I decided not to since I didn't want a huge disruptive PR :)