Skip to content

Commit 60c65f9

Browse files
committed
Remove unintended stdout prints
1 parent 6f9feea commit 60c65f9

File tree

3 files changed

+6
-3
lines changed

3 files changed

+6
-3
lines changed

ribboncurls-cli/tests/operation_render.rs

Lines changed: 0 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -278,8 +278,6 @@ fn test_operation_render_out() -> Result<()> {
278278
])
279279
.unwrap();
280280

281-
println!("stdout: {}", stdout);
282-
283281
// ------
284282
// Assert
285283
// ------

ribboncurls/CHANGELOG.md

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,11 @@
11
# Changelog
22

3+
## Unreleased
4+
5+
## Fixed
6+
7+
- Remove unintended stdout prints.
8+
39
## 0.4.0 - 2024-09-02
410

511
## Changed

ribboncurls/src/syntax_tree/utils.rs

Lines changed: 0 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -146,7 +146,6 @@ pub(crate) fn cleanup_syntax_item_text_newline_and_spacing(
146146

147147
fn convert_usize_to_u8(val: usize) -> Result<u8, RibboncurlsError> {
148148
if val <= u8::MAX as usize {
149-
println!("should be ok");
150149
Ok(val as u8)
151150
} else {
152151
Err(RibboncurlsError::StringSize)

0 commit comments

Comments
 (0)