Description: force thread to sleep briefly to prevent build failures on
 fast systems when 2 PBECipher encryptions begin during the same
 millisecond.
Author: Sjoerd Simons <sjoerd@debian.org>

--- a/src/test/java/org/sonatype/plexus/components/cipher/PBECipherTest.java
+++ b/src/test/java/org/sonatype/plexus/components/cipher/PBECipherTest.java
@@ -55,6 +55,8 @@
         
         System.out.println(enc);
 
+        Thread.sleep (10);
+
         String enc2 = _cipher.encrypt64( _cleatText, _password );
         
         assertNotNull( enc2 );

