return true on unmatching partial strings in eq_test to indicate failure (#491)

This commit is contained in:
Mark Thom
2020-05-12 18:22:41 -06:00
parent c70b873397
commit 23f804eda3

View File

@@ -1892,7 +1892,7 @@ impl MachineState {
if let Some(ordering) = ordering {
if ordering != Ordering::Equal {
return false;
return true;
}
}