Skip to content

Commit

Permalink
tests
Browse files Browse the repository at this point in the history
  • Loading branch information
rsk0315 committed Feb 12, 2024
1 parent 4caecca commit 30bf471
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 5 deletions.
2 changes: 1 addition & 1 deletion nekolib-src/math/divisors/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
trait Divisors {
pub trait Divisors: Sized {
fn divisors(self) -> impl Iterator<Item = Self>;
}

Expand Down
4 changes: 2 additions & 2 deletions nekolib-src/math/factors/src/lib.rs
Original file line number Diff line number Diff line change
@@ -1,8 +1,8 @@
trait Factors: Sized {
pub trait Factors: Sized {
fn factors(self) -> impl Iterator<Item = ((Self, u32), Self)>;
}

trait FactorsDup {
pub trait FactorsDup: Sized {
fn factors_dup(self) -> impl Iterator<Item = Self>;
}

Expand Down
2 changes: 1 addition & 1 deletion nekolib-src/random/randgen/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -100,7 +100,7 @@ fn uniformity() {
}

#[test]
#[ignore]
#[cfg(ignore)]
fn macros() {
rand_gen! {
rng = _; // Default
Expand Down
2 changes: 1 addition & 1 deletion nekolib-src/snippet/proconio/src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -13,7 +13,7 @@
//!
//! ## `impl Readable`
//!
//! ```
//! ```ignore
//! use std::io::BufRead;
//!
//! use proconio::{
Expand Down

0 comments on commit 30bf471

Please sign in to comment.