JAMES-2525 Fix typo

Project: http://git-wip-us.apache.org/repos/asf/james-project/repo
Commit: http://git-wip-us.apache.org/repos/asf/james-project/commit/787695d6
Tree: http://git-wip-us.apache.org/repos/asf/james-project/tree/787695d6
Diff: http://git-wip-us.apache.org/repos/asf/james-project/diff/787695d6

Branch: refs/heads/master
Commit: 787695d6008003a91a4e727f267c6c9530561652
Parents: e18abb6
Author: Raphael Ouazana <[email protected]>
Authored: Thu Oct 11 11:55:01 2018 +0200
Committer: Benoit Tellier <[email protected]>
Committed: Mon Oct 15 13:17:08 2018 +0700

----------------------------------------------------------------------
 .../SwiftKeystone2ConfigurationReaderTest.java          |  8 ++++----
 .../SwiftTmpAuthConfigurationReaderTest.java            | 12 ++++++------
 2 files changed, 10 insertions(+), 10 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/james-project/blob/787695d6/server/container/guice/blob-objectstorage-guice/src/test/java/org/apache/james/modules/objectstorage/SwiftKeystone2ConfigurationReaderTest.java
----------------------------------------------------------------------
diff --git 
a/server/container/guice/blob-objectstorage-guice/src/test/java/org/apache/james/modules/objectstorage/SwiftKeystone2ConfigurationReaderTest.java
 
b/server/container/guice/blob-objectstorage-guice/src/test/java/org/apache/james/modules/objectstorage/SwiftKeystone2ConfigurationReaderTest.java
index 2b6f81b..83ed3c9 100644
--- 
a/server/container/guice/blob-objectstorage-guice/src/test/java/org/apache/james/modules/objectstorage/SwiftKeystone2ConfigurationReaderTest.java
+++ 
b/server/container/guice/blob-objectstorage-guice/src/test/java/org/apache/james/modules/objectstorage/SwiftKeystone2ConfigurationReaderTest.java
@@ -97,7 +97,7 @@ class SwiftKeystone2ConfigurationReaderTest {
     }
 
     @Test
-    void failToReadSwiftKeyston2ConfigurationWhenMissingEndpoint() throws 
Exception {
+    void failToReadSwiftKeystone2ConfigurationWhenMissingEndpoint() throws 
Exception {
         PropertiesConfiguration configuration = new PropertiesConfiguration();
         configuration.load(new StringReader(StringUtils.joinWith("\n",
             CONFIG_CREDENTIALS,
@@ -110,7 +110,7 @@ class SwiftKeystone2ConfigurationReaderTest {
     }
 
     @Test
-    void failToReadSwiftKeyston2ConfigurationWhenMissingCrendentials() throws 
Exception {
+    void failToReadSwiftKeystone2ConfigurationWhenMissingCrendentials() throws 
Exception {
         PropertiesConfiguration configuration = new PropertiesConfiguration();
         configuration.load(new StringReader(StringUtils.joinWith("\n",
             CONFIG_ENDPOINT,
@@ -123,7 +123,7 @@ class SwiftKeystone2ConfigurationReaderTest {
     }
 
     @Test
-    void failToReadSwiftKeyston2ConfigurationWhenMissingUserName() throws 
Exception {
+    void failToReadSwiftKeystone2ConfigurationWhenMissingUserName() throws 
Exception {
         PropertiesConfiguration configuration = new PropertiesConfiguration();
         configuration.load(new StringReader(StringUtils.joinWith("\n",
             CONFIG_ENDPOINT,
@@ -136,7 +136,7 @@ class SwiftKeystone2ConfigurationReaderTest {
     }
 
     @Test
-    void failToReadSwiftKeyston2ConfigurationWhenMissingTenantName() throws 
Exception {
+    void failToReadSwiftKeystone2ConfigurationWhenMissingTenantName() throws 
Exception {
         PropertiesConfiguration configuration = new PropertiesConfiguration();
         configuration.load(new StringReader(StringUtils.joinWith("\n",
             CONFIG_ENDPOINT,

http://git-wip-us.apache.org/repos/asf/james-project/blob/787695d6/server/container/guice/blob-objectstorage-guice/src/test/java/org/apache/james/modules/objectstorage/SwiftTmpAuthConfigurationReaderTest.java
----------------------------------------------------------------------
diff --git 
a/server/container/guice/blob-objectstorage-guice/src/test/java/org/apache/james/modules/objectstorage/SwiftTmpAuthConfigurationReaderTest.java
 
b/server/container/guice/blob-objectstorage-guice/src/test/java/org/apache/james/modules/objectstorage/SwiftTmpAuthConfigurationReaderTest.java
index f5c2b7e..5eeb96e 100644
--- 
a/server/container/guice/blob-objectstorage-guice/src/test/java/org/apache/james/modules/objectstorage/SwiftTmpAuthConfigurationReaderTest.java
+++ 
b/server/container/guice/blob-objectstorage-guice/src/test/java/org/apache/james/modules/objectstorage/SwiftTmpAuthConfigurationReaderTest.java
@@ -86,7 +86,7 @@ class SwiftTmpAuthConfigurationReaderTest {
     }
 
     @Test
-    void readKeystone2ConfigurationWithRegion() throws Exception {
+    void readTempAuthConfigurationWithRegion() throws Exception {
         PropertiesConfiguration configuration = new PropertiesConfiguration();
         configuration.load(new StringReader(StringUtils.joinWith("\n",
             CONFIG_ENDPOINT,
@@ -107,7 +107,7 @@ class SwiftTmpAuthConfigurationReaderTest {
     }
 
     @Test
-    void readKeystone2ConfigurationWithCustomTempAuthHeaders() throws 
Exception {
+    void readTempAuthConfigurationWithCustomTempAuthHeaders() throws Exception 
{
         PropertiesConfiguration configuration = new PropertiesConfiguration();
         configuration.load(new StringReader(StringUtils.joinWith("\n",
             CONFIG_ENDPOINT,
@@ -130,7 +130,7 @@ class SwiftTmpAuthConfigurationReaderTest {
     }
 
     @Test
-    void failToReadSwiftKeyston2ConfigurationWhenMissingEndpoint() throws 
Exception {
+    void failToReadSwiftTempAuthConfigurationWhenMissingEndpoint() throws 
Exception {
         PropertiesConfiguration configuration = new PropertiesConfiguration();
         configuration.load(new StringReader(StringUtils.joinWith("\n",
             CONFIG_CREDENTIALS,
@@ -143,7 +143,7 @@ class SwiftTmpAuthConfigurationReaderTest {
     }
 
     @Test
-    void failToReadSwiftKeyston2ConfigurationWhenMissingCrendentials() throws 
Exception {
+    void failToReadSwiftTempAuthConfigurationWhenMissingCrendentials() throws 
Exception {
         PropertiesConfiguration configuration = new PropertiesConfiguration();
         configuration.load(new StringReader(StringUtils.joinWith("\n",
             CONFIG_ENDPOINT,
@@ -156,7 +156,7 @@ class SwiftTmpAuthConfigurationReaderTest {
     }
 
     @Test
-    void failToReadSwiftKeyston2ConfigurationWhenMissingUserName() throws 
Exception {
+    void failToReadSwiftTempAuthConfigurationWhenMissingUserName() throws 
Exception {
         PropertiesConfiguration configuration = new PropertiesConfiguration();
         configuration.load(new StringReader(StringUtils.joinWith("\n",
             CONFIG_ENDPOINT,
@@ -169,7 +169,7 @@ class SwiftTmpAuthConfigurationReaderTest {
     }
 
     @Test
-    void failToReadSwiftKeyston2ConfigurationWhenMissingTenantName() throws 
Exception {
+    void failToReadSwiftTempAuthConfigurationWhenMissingTenantName() throws 
Exception {
         PropertiesConfiguration configuration = new PropertiesConfiguration();
         configuration.load(new StringReader(StringUtils.joinWith("\n",
             CONFIG_ENDPOINT,


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to