fix ui tests

This commit is contained in:
Jane Lusby 2021-07-16 11:26:20 -07:00
parent 93b7aee2da
commit e3dd616911
2 changed files with 2 additions and 2 deletions

View File

@ -6,7 +6,7 @@
#![feature(assert_matches)]
use std::assert::assert_matches;
use std::assert_matches::assert_matches;
fn main() {
assert_matches!(1 + 1, 3, "1 + 1 definitely should be 3");

View File

@ -6,7 +6,7 @@
#![feature(assert_matches)]
use std::assert::assert_matches;
use std::assert_matches::assert_matches;
fn main() {
assert!(matches!((), ()));