Skip to content

Commit

Permalink
Remove unintended stdout prints
Browse files Browse the repository at this point in the history
  • Loading branch information
JamyGolden committed Sep 4, 2024
1 parent 6f9feea commit 60c65f9
Show file tree
Hide file tree
Showing 3 changed files with 6 additions and 3 deletions.
2 changes: 0 additions & 2 deletions ribboncurls-cli/tests/operation_render.rs
Original file line number Diff line number Diff line change
Expand Up @@ -278,8 +278,6 @@ fn test_operation_render_out() -> Result<()> {
])
.unwrap();

println!("stdout: {}", stdout);

// ------
// Assert
// ------
Expand Down
6 changes: 6 additions & 0 deletions ribboncurls/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
# Changelog

## Unreleased

## Fixed

- Remove unintended stdout prints.

## 0.4.0 - 2024-09-02

## Changed
Expand Down
1 change: 0 additions & 1 deletion ribboncurls/src/syntax_tree/utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -146,7 +146,6 @@ pub(crate) fn cleanup_syntax_item_text_newline_and_spacing(

fn convert_usize_to_u8(val: usize) -> Result<u8, RibboncurlsError> {
if val <= u8::MAX as usize {
println!("should be ok");
Ok(val as u8)
} else {
Err(RibboncurlsError::StringSize)
Expand Down

0 comments on commit 60c65f9

Please sign in to comment.