Skip to content

Commit

Permalink
docs(model): Trivially end comment sentences with dots
Browse files Browse the repository at this point in the history
Signed-off-by: Sebastian Schuberth <[email protected]>
  • Loading branch information
sschuberth committed Dec 20, 2024
1 parent 958c08c commit 1ca8d2a
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions model/src/test/kotlin/licenses/LicenseInfoResolverTest.kt
Original file line number Diff line number Diff line change
Expand Up @@ -592,7 +592,7 @@ class LicenseInfoResolverTest : WordSpec({

"resolve copyrights from authors in concluded license" {
// In case of a concluded license (due to a package curation) verify that the authors named
// in the package curation are added as copyright statement under the concluded license
// in the package curation are added as copyright statement under the concluded license.
val licenseInfos = listOf(
createLicenseInfo(
id = pkgId,
Expand All @@ -608,7 +608,7 @@ class LicenseInfoResolverTest : WordSpec({
val result = resolver.resolveLicenseInfo(pkgId)
result should containCopyrightStatementsForLicenseExactly(
"BSD-2-Clause",
// A "Copyright" prefix is added to the author (if it did not already exist)
// A "Copyright" prefix is added to the author (if it did not already exist).
"Copyright (C) 2024 The Author", "Copyright (C) The Other Author"
)
}
Expand Down

0 comments on commit 1ca8d2a

Please sign in to comment.