@@ -153,7 +153,7 @@ public void copySameLinksWithGoToSmartModeTest() throws IOException, Interrupted
153
153
154
154
copyLinksGoToActionTest (outFilePath , true , false );
155
155
156
- Assert .assertNull (new CompareTool ().compareByContent (cmpFilePath , outFilePath , destinationFolder ));
156
+ Assert .assertNull (new CompareTool ().compareByContent (outFilePath , cmpFilePath , destinationFolder ));
157
157
}
158
158
159
159
@ Test
@@ -164,7 +164,7 @@ public void copyDiffDestLinksWithGoToSmartModeTest() throws IOException, Interru
164
164
165
165
copyLinksGoToActionTest (outFilePath , false , false );
166
166
167
- Assert .assertNull (new CompareTool ().compareByContent (cmpFilePath , outFilePath , destinationFolder ));
167
+ Assert .assertNull (new CompareTool ().compareByContent (outFilePath , cmpFilePath , destinationFolder ));
168
168
}
169
169
170
170
@ Test
@@ -175,7 +175,7 @@ public void copyDiffDisplayLinksWithGoToSmartModeTest() throws IOException, Inte
175
175
176
176
copyLinksGoToActionTest (outFilePath , false , true );
177
177
178
- Assert .assertNull (new CompareTool ().compareByContent (cmpFilePath , outFilePath , destinationFolder ));
178
+ Assert .assertNull (new CompareTool ().compareByContent (outFilePath , cmpFilePath , destinationFolder ));
179
179
}
180
180
181
181
private void copyLinksGoToActionTest (String dest , boolean isTheSameLinks , boolean diffDisplayOptions )
0 commit comments