File tree Expand file tree Collapse file tree 3 files changed +3
-3
lines changed
java/org/commonwl/view/git
resources/cwl/licenses/none Expand file tree Collapse file tree 3 files changed +3
-3
lines changed Original file line number Diff line number Diff line change 44## v1.4.6 [ Unreleased]
55
66User visible changes
7- - Should be none
7+ - Better identify repository licenses through the Licensee Ruby Gem
88
99Operations changes:
1010- Unused RO Bundles and Git repositories are now deleted in case of errors,
Original file line number Diff line number Diff line change @@ -164,10 +164,10 @@ public void getLicense() throws Exception {
164164
165165 when (mockRepo .getWorkTree ()).thenReturn (new File ("src/test/resources/cwl/licenses/other/" ));
166166 assertEquals (
167- "https://could.com/be/anything/src/test/resources/cwl/licenses/other/LICENSE " ,
167+ "https://could.com/be/anything.git " ,
168168 GENERIC_DETAILS .getLicense (mockRepo .getWorkTree ().toPath ()));
169169
170- when (mockRepo .getWorkTree ()).thenReturn (new File ("src/test/resources/cwl/licenses/other /" ));
170+ when (mockRepo .getWorkTree ()).thenReturn (new File ("src/test/resources/cwl/licenses/none /" ));
171171 assertNull (GENERIC_DETAILS .getLicense (mockRepo .getWorkTree ().toPath ()));
172172 }
173173}
You can’t perform that action at this time.
0 commit comments