Skip to content

Commit c640bc5

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

File tree

2 files changed

+3
-3
lines changed

2 files changed

+3
-3
lines changed

library/coretests/tests/bstr.rs

Lines changed: 1 addition & 3 deletions
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

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -10,6 +10,7 @@
1010
#![feature(ascii_char_variants)]
1111
#![feature(async_iter_from_iter)]
1212
#![feature(async_iterator)]
13+
#![feature(bstr)]
1314
#![feature(bigint_helper_methods)]
1415
#![feature(cell_update)]
1516
#![feature(clone_to_uninit)]
@@ -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)