Skip to content

Commit 398e85e

Browse files
committed
comment print in test
1 parent 555bda2 commit 398e85e

File tree

1 file changed

+8
-8
lines changed

1 file changed

+8
-8
lines changed

tests/test_mockup.rs

+8-8
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
#[cfg(test)]
22
mod test_mockup
33
{
4-
use psv::{generate::generate_mockup, model::UserAppEntry, util::{read_file_utf8, write_file}};
4+
use psv::{generate::generate_mockup, model::UserAppEntry, util::read_file_utf8};
55

66
#[test]
77
/// This tests for runtime errors during generation from a known input (cached in the repo)
@@ -36,13 +36,13 @@ mod test_mockup
3636

3737
// there is something non-deterministic in the rewriting... so an
3838
// equality test fails... but the generated docs look identical to the eye.
39-
for i in 0..g.len()
40-
{
41-
if g[i] != e[i]
42-
{
43-
println!("{}, {}, {}", i, g[i], e[i]);
44-
}
45-
}
39+
// for i in 0..g.len()
40+
// {
41+
// if g[i] != e[i]
42+
// {
43+
// println!("{}, {}, {}", i, g[i], e[i]);
44+
// }
45+
// }
4646

4747

4848
}

0 commit comments

Comments
 (0)