]> source.dussan.org Git - jgit.git/commitdiff
LfsServerText: Fix formatting of invalidPathInfo message 79/112979/4
authorDavid Pursehouse <david.pursehouse@gmail.com>
Thu, 7 Dec 2017 01:18:21 +0000 (10:18 +0900)
committerDavid Pursehouse <david.pursehouse@gmail.com>
Thu, 7 Dec 2017 11:02:59 +0000 (20:02 +0900)
The message is formatted as:

  Invalid pathInfo '/abc' does not match '/{SHA-256}'

but should be:

  Invalid pathInfo: '/abc' does not match '/{SHA-256}'

(i.e. including a colon) to be consistent with other messages.

Change-Id: Ic38aa7d33dd02d7954b95c331a73919a90c69991
Signed-off-by: David Pursehouse <david.pursehouse@gmail.com>
org.eclipse.jgit.lfs.server.test/tst/org/eclipse/jgit/lfs/server/fs/DownloadTest.java
org.eclipse.jgit.lfs.server/resources/org/eclipse/jgit/lfs/server/internal/LfsServerText.properties

index 33ba2de80362125b892f8d381f088d0bccaa1392..a38bf6a808a29e728d3c378344308d3be71519aa 100644 (file)
@@ -81,7 +81,7 @@ public class DownloadTest extends LfsServerTest {
                String id = putContent(TEXT).name().substring(0, 60);
                Path f = Paths.get(getTempDirectory().toString(), "download");
                String error = String.format(
-                               "Invalid pathInfo '/%s' does not match '/{SHA-256}'", id);
+                               "Invalid pathInfo: '/%s' does not match '/{SHA-256}'", id);
                exception.expect(RuntimeException.class);
                exception.expectMessage(
                                formatErrorMessage(SC_UNPROCESSABLE_ENTITY, error));
index b2b487eefc847b9849bdfa3b454c668582e8fb07..659714528c00ecc1705e110dea5f3e924d85de0f 100644 (file)
@@ -1,5 +1,5 @@
 failedToCalcSignature=Failed to calculate a request signature: {0}
-invalidPathInfo=Invalid pathInfo ''{0}'' does not match ''/'{'SHA-256'}'''
+invalidPathInfo=Invalid pathInfo: ''{0}'' does not match ''/'{'SHA-256'}'''
 objectNotFound=Object ''{0}'' not found
 undefinedS3AccessKey=S3 configuration: 'accessKey' is undefined
 undefinedS3Bucket=S3 configuration: 'bucket' is undefined