Skip to content

Commit c78f24c

Browse files
GlassOfWhiskeymr-c
authored andcommitted
Updated CHANGELOG.md
1 parent 0a67a1f commit c78f24c

File tree

3 files changed

+3
-3
lines changed

3 files changed

+3
-3
lines changed

CHANGELOG.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
## v1.4.6 [Unreleased]
55

66
User visible changes
7-
- Should be none
7+
- Better identify repository licenses through the Licensee Ruby Gem
88

99
Operations changes:
1010
- Unused RO Bundles and Git repositories are now deleted in case of errors,

src/test/java/org/commonwl/view/git/GitDetailsTest.java

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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
}

src/test/resources/cwl/licenses/none/.gitkeep

Whitespace-only changes.

0 commit comments

Comments
 (0)