Skip to content

Commit 2f4dd6e

Browse files
committed
Actually run the bstr test
It previously didn't get run because of a missing mod bstr.
1 parent fcf78bb commit 2f4dd6e

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/coretests/tests/bstr.rs

+1-3
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,4 @@
1-
#![feature(bstr)]
2-
3-
use core::ByteStr;
1+
use core::bstr::ByteStr;
42

53
#[test]
64
fn test_debug() {

library/coretests/tests/lib.rs

+2
Original file line numberDiff line numberDiff line change
@@ -11,6 +11,7 @@
1111
#![feature(async_iter_from_iter)]
1212
#![feature(async_iterator)]
1313
#![feature(bigint_helper_methods)]
14+
#![feature(bstr)]
1415
#![feature(cell_update)]
1516
#![feature(clone_to_uninit)]
1617
#![feature(const_black_box)]
@@ -139,6 +140,7 @@ mod asserting;
139140
mod async_iter;
140141
mod atomic;
141142
mod bool;
143+
mod bstr;
142144
mod cell;
143145
mod char;
144146
mod clone;

0 commit comments

Comments
 (0)