You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@jmeter.apache.org by fs...@apache.org on 2018/12/02 11:00:29 UTC

svn commit: r1847958 - /jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java

Author: fschumacher
Date: Sun Dec  2 11:00:28 2018
New Revision: 1847958

URL: http://svn.apache.org/viewvc?rev=1847958&view=rev
Log:
spacepolice

Modified:
    jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java

Modified: jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java
URL: http://svn.apache.org/viewvc/jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java?rev=1847958&r1=1847957&r2=1847958&view=diff
==============================================================================
--- jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java (original)
+++ jmeter/trunk/test/src/org/apache/jorphan/exec/TestKeyToolUtils.java Sun Dec  2 11:00:28 2018
@@ -19,7 +19,6 @@
 /**
  * Package to test JOrphanUtils methods 
  */
-     
 package org.apache.jorphan.exec;
 
 import static org.junit.Assert.fail;
@@ -44,7 +43,7 @@ public class TestKeyToolUtils {
     public void setup() throws IOException {
         keystore = File.createTempFile("dummy-keystore", "jks");
         keystore.deleteOnExit();
-        KeyToolUtils.generateProxyCA(keystore, password , validity );
+        KeyToolUtils.generateProxyCA(keystore, password, validity );
     }
 
     @After