File tree Expand file tree Collapse file tree 1 file changed +1
-11
lines changed
jabgui/src/test/java/org/jabref/gui/preview Expand file tree Collapse file tree 1 file changed +1
-11
lines changed Original file line number Diff line number Diff line change @@ -153,17 +153,7 @@ void processMarkdownAsMarkdown() {
153
153
154
154
ClipboardContent markdown = ClipboardContentGenerator .processMarkdown (Arrays .asList (citation , citation ));
155
155
String actual = markdown .getString ();
156
-
157
- // Print actual output for debugging
158
- System .out .println ("=== Actual Markdown Output ===" );
159
- System .out .println (actual );
160
- System .out .println ("=== End ===" );
161
-
162
- // Normalize both strings to ignore whitespace and formatting issues
163
- String normalizedActual = actual .replaceAll ("\\ s+" , " " ).trim ();
164
- String normalizedExpected = expected .replaceAll ("\\ s+" , " " ).trim ();
165
-
166
- assertEquals (normalizedExpected , normalizedActual );
156
+ assertEquals (expected , actual );
167
157
}
168
158
}
169
159
You can’t perform that action at this time.
0 commit comments