Author: centic
Date: Wed Sep  6 09:53:29 2023
New Revision: 1912126

URL: http://svn.apache.org/viewvc?rev=1912126&view=rev
Log:
Reduce flakiness of one test which compares two documents

There are more places where a timestamp is stored in the zip-file, 
let's try to replace some more bytes to make comparison succeed
more often.

Modified:
    
poi/trunk/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestBugzillaIssues.java

Modified: 
poi/trunk/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestBugzillaIssues.java
URL: 
http://svn.apache.org/viewvc/poi/trunk/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestBugzillaIssues.java?rev=1912126&r1=1912125&r2=1912126&view=diff
==============================================================================
--- 
poi/trunk/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestBugzillaIssues.java
 (original)
+++ 
poi/trunk/poi/src/test/java/org/apache/poi/ss/usermodel/BaseTestBugzillaIssues.java
 Wed Sep  6 09:53:29 2023
@@ -1840,6 +1840,41 @@ public abstract class BaseTestBugzillaIs
             bytes[11] = 0;
             bytes[12] = 0;
             bytes[13] = 0;
+
+            // there is a timestamp for every entry, so try to replace a few 
more byte-positions
+            // to reduce flakiness of this test, however we likely do not yet 
cover all entries
+            bytes[390] = 0;
+            bytes[391] = 0;
+            bytes[674] = 0;
+            bytes[883] = 0;
+            bytes[1207] = 0;
+            bytes[1208] = 0;
+            bytes[1433] = 0;
+            bytes[1434] = 0;
+            bytes[1817] = 0;
+            bytes[1818] = 0;
+            bytes[2098] = 0;
+            bytes[2099] = 0;
+            bytes[2762] = 0;
+            bytes[2763] = 0;
+            bytes[2382] = 0;
+            bytes[2383] = 0;
+            bytes[2827] = 0;
+            bytes[2828] = 0;
+            bytes[2884] = 0;
+            bytes[2885] = 0;
+            bytes[2946] = 0;
+            bytes[2947] = 0;
+            bytes[3009] = 0;
+            bytes[3010] = 0;
+            bytes[3075] = 0;
+            bytes[3076] = 0;
+            bytes[3134] = 0;
+            bytes[3135] = 0;
+            bytes[3195] = 0;
+            bytes[3196] = 0;
+            bytes[3267] = 0;
+            bytes[3268] = 0;
         }
 
         return bytes;



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

Reply via email to