Skip to content

Commit

Permalink
Actually run the bstr test
Browse files Browse the repository at this point in the history
It previously didn't get run because of a missing mod bstr.
  • Loading branch information
bjorn3 committed Jan 26, 2025
1 parent fcf78bb commit 2f4dd6e
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 3 deletions.
4 changes: 1 addition & 3 deletions library/coretests/tests/bstr.rs
Original file line number Diff line number Diff line change
@@ -1,6 +1,4 @@
#![feature(bstr)]

use core::ByteStr;
use core::bstr::ByteStr;

#[test]
fn test_debug() {
Expand Down
2 changes: 2 additions & 0 deletions library/coretests/tests/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -11,6 +11,7 @@
#![feature(async_iter_from_iter)]
#![feature(async_iterator)]
#![feature(bigint_helper_methods)]
#![feature(bstr)]
#![feature(cell_update)]
#![feature(clone_to_uninit)]
#![feature(const_black_box)]
Expand Down Expand Up @@ -139,6 +140,7 @@ mod asserting;
mod async_iter;
mod atomic;
mod bool;
mod bstr;
mod cell;
mod char;
mod clone;
Expand Down

0 comments on commit 2f4dd6e

Please sign in to comment.