Skip to content

Commit fff07b1

Browse files
committed
display: use plib::testing
1 parent c12d6d3 commit fff07b1

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

display/tests/echo/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// SPDX-License-Identifier: MIT
88
//
99

10-
use plib::{run_test, TestPlan};
10+
use plib::testing::{run_test, TestPlan};
1111

1212
fn echo_test(args: &[&str], expected_output: &str) {
1313
let str_args: Vec<String> = args.iter().map(|s| String::from(*s)).collect();

display/tests/printf/mod.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@
77
// SPDX-License-Identifier: MIT
88
//
99

10-
use plib::{run_test, TestPlan};
10+
use plib::testing::{run_test, TestPlan};
1111

1212
#[test]
1313
fn test_basic_string_output() {

0 commit comments

Comments
 (0)