Skip to content

Commit

Permalink
8240226: DeflateIn_InflateOut.java test incorrectly assumes size of c…
Browse files Browse the repository at this point in the history
…ompressed file

Reviewed-by: martin, alanb
  • Loading branch information
simonis committed Feb 28, 2020
1 parent 8a79f26 commit b38f3cf
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions test/jdk/java/util/zip/DeflateIn_InflateOut.java
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
/*
* Copyright (c) 2006, Oracle and/or its affiliates. All rights reserved.
* Copyright (c) 2006, 2020, Oracle and/or its affiliates. All rights reserved.
* DO NOT ALTER OR REMOVE COPYRIGHT NOTICES OR THIS FILE HEADER.
*
* This code is free software; you can redistribute it and/or modify it
Expand Down Expand Up @@ -42,8 +42,6 @@ public class DeflateIn_InflateOut {
private static InflaterOutputStream ios;

private static void reset() {
new Random(new Date().getTime()).nextBytes(data);

bais = new ByteArrayInputStream(data);
dis = new DeflaterInputStream(bais);

Expand Down Expand Up @@ -218,6 +216,8 @@ private static void SkipBytes() throws Throwable {


public static void realMain(String[] args) throws Throwable {
new Random(new Date().getTime()).nextBytes(data);

ArrayReadWrite();

ArrayReadByteWrite();
Expand Down

0 comments on commit b38f3cf

Please sign in to comment.