File tree Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Expand file tree Collapse file tree 3 files changed +6
-3
lines changed Original file line number Diff line number Diff line change @@ -278,8 +278,6 @@ fn test_operation_render_out() -> Result<()> {
278
278
] )
279
279
. unwrap ( ) ;
280
280
281
- println ! ( "stdout: {}" , stdout) ;
282
-
283
281
// ------
284
282
// Assert
285
283
// ------
Original file line number Diff line number Diff line change 1
1
# Changelog
2
2
3
+ ## Unreleased
4
+
5
+ ## Fixed
6
+
7
+ - Remove unintended stdout prints.
8
+
3
9
## 0.4.0 - 2024-09-02
4
10
5
11
## Changed
Original file line number Diff line number Diff line change @@ -146,7 +146,6 @@ pub(crate) fn cleanup_syntax_item_text_newline_and_spacing(
146
146
147
147
fn convert_usize_to_u8 ( val : usize ) -> Result < u8 , RibboncurlsError > {
148
148
if val <= u8:: MAX as usize {
149
- println ! ( "should be ok" ) ;
150
149
Ok ( val as u8 )
151
150
} else {
152
151
Err ( RibboncurlsError :: StringSize )
You can’t perform that action at this time.
0 commit comments