Skip to content

Commit

Permalink
Fix spotless errors
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Ross <[email protected]>
  • Loading branch information
andrross committed Feb 13, 2024
1 parent 2bc7758 commit 407ddff
Show file tree
Hide file tree
Showing 2 changed files with 1 addition and 3 deletions.
1 change: 1 addition & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -110,6 +110,7 @@ The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.0.0/),
### Fixed
- Fix for deserilization bug in weighted round-robin metadata ([#11679](https://github.com/opensearch-project/OpenSearch/pull/11679))
- Add a system property to configure YamlParser codepoint limits ([#12298](https://github.com/opensearch-project/OpenSearch/pull/12298))
- Prevent read beyond slice boundary in ByteArrayIndexInput ([#10481](https://github.com/opensearch-project/OpenSearch/issues/10481))

### Security

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -156,7 +156,6 @@ public void testRandomAccessReads() throws IOException {
assertEquals(-8564288273245753042L, indexInput.readLong(1));
}


public void testReadBytesWithSlice() throws IOException {
int inputLength = randomIntBetween(100, 1000);

Expand Down Expand Up @@ -185,7 +184,5 @@ public void testReadBytesWithSlice() throws IOException {

slice.close();
indexInput.close();

}

}

0 comments on commit 407ddff

Please sign in to comment.