You are viewing a plain text version of this content. The canonical link for it is here.
Posted to fx-dev@ws.apache.org by we...@apache.org on 2004/04/07 07:57:02 UTC

cvs commit: ws-fx/wss4j/test/wssec TestWSSecurityHooks.java

werner      2004/04/06 22:57:02

  Modified:    wss4j/test/wssec TestWSSecurityHooks.java
  Log:
  Fix not null check.
  
  Revision  Changes    Path
  1.2       +1 -1      ws-fx/wss4j/test/wssec/TestWSSecurityHooks.java
  
  Index: TestWSSecurityHooks.java
  ===================================================================
  RCS file: /home/cvs/ws-fx/wss4j/test/wssec/TestWSSecurityHooks.java,v
  retrieving revision 1.1
  retrieving revision 1.2
  diff -u -r1.1 -r1.2
  --- TestWSSecurityHooks.java	13 Feb 2004 20:43:09 -0000	1.1
  +++ TestWSSecurityHooks.java	7 Apr 2004 05:57:02 -0000	1.2
  @@ -181,7 +181,7 @@
      public class TestCryptoImpl extends Merlin {
         TestCryptoImpl(KeyStore ks) throws Exception {
            super(null);
  -         assertNotNull(keystore);
  +         assertNotNull(ks);
            setKeyStore(ks);
         }
      }