Skip to content

Commit

Permalink
Fix tests
Browse files Browse the repository at this point in the history
  • Loading branch information
sourcefrog committed Dec 16, 2023
1 parent 7b42ccf commit ceb5d54
Showing 1 changed file with 5 additions and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -456,6 +456,11 @@ src/scenario.rs: replace Scenario::is_mutant -> bool with true
src/scenario.rs: replace Scenario::is_mutant -> bool with false
src/scenario.rs: replace Scenario::log_file_name_base -> String with String::new()
src/scenario.rs: replace Scenario::log_file_name_base -> String with "xyzzy".into()
src/shard.rs: replace Shard::select -> Vec<M> with vec![]
src/shard.rs: replace Shard::select -> Vec<M> with vec![Default::default()]
src/shard.rs: replace == with != in Shard::select
src/shard.rs: replace <impl FromStr for Shard>::from_str -> Result<Self, Self::Err> with Ok(Default::default())
src/shard.rs: replace <impl FromStr for Shard>::from_str -> Result<Self, Self::Err> with Err(::anyhow::anyhow!("mutated!"))
src/source.rs: replace SourceFile::tree_relative_slashes -> String with String::new()
src/source.rs: replace SourceFile::tree_relative_slashes -> String with "xyzzy".into()
src/source.rs: replace SourceFile::path -> &Utf8Path with &Default::default()
Expand Down

0 comments on commit ceb5d54

Please sign in to comment.