mirror of
https://github.com/servo/servo.git
synced 2025-08-07 06:25:32 +01:00
Remove some debug logging
This commit is contained in:
parent
25e1529594
commit
645009d181
1 changed files with 0 additions and 2 deletions
|
@ -58,7 +58,6 @@ fn should_return_none_glyph_index_for_bad_codepoints() {
|
||||||
fn should_get_glyph_h_advance() {
|
fn should_get_glyph_h_advance() {
|
||||||
with_test_native_font(|font| {
|
with_test_native_font(|font| {
|
||||||
let adv = font.glyph_h_advance(40u);
|
let adv = font.glyph_h_advance(40u);
|
||||||
error!("%?", adv);
|
|
||||||
assert adv == Some(15);
|
assert adv == Some(15);
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
@ -68,7 +67,6 @@ fn should_get_glyph_h_advance() {
|
||||||
fn should_return_none_glyph_h_advance_for_bad_codepoints() {
|
fn should_return_none_glyph_h_advance_for_bad_codepoints() {
|
||||||
with_test_native_font(|font| {
|
with_test_native_font(|font| {
|
||||||
let adv = font.glyph_h_advance(-1 as uint);
|
let adv = font.glyph_h_advance(-1 as uint);
|
||||||
error!("%?", adv);
|
|
||||||
assert adv == None;
|
assert adv == None;
|
||||||
})
|
})
|
||||||
}
|
}
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue