We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08b9de8 commit a7fdb79Copy full SHA for a7fdb79
tests/framework/src/runner/trace.rs
@@ -112,13 +112,13 @@ impl std::fmt::Debug for PrettyString<'_> {
112
}
113
114
fn assert_text_matches(ruffle: &str, flash: &str) -> anyhow::Result<()> {
115
- if flash != ruffle {
+ if ruffle != flash {
116
let left_pretty = PrettyString(ruffle);
117
let right_pretty = PrettyString(flash);
118
let comparison = Comparison::new(&left_pretty, &right_pretty);
119
120
Err(anyhow!(
121
- "assertion failed: `(flash_expected == ruffle_actual)`\
+ "assertion failed: `(ruffle_actual == flash_expected)`\
122
\n\
123
\n{}\
124
\n",
0 commit comments