Skip to content

Commit

Permalink
Address review comments
Browse files Browse the repository at this point in the history
Signed-off-by: Hai Yan <[email protected]>
  • Loading branch information
oeyh committed Feb 27, 2024
1 parent 69cfc34 commit 68ffe5a
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 6 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -71,7 +71,7 @@ public void testPutAndGet_withRandomString() {
}

@ParameterizedTest
@ValueSource(strings = {"/", "foo", "foo-bar", "foo_bar", "foo.bar", "/foo", "/foo/", "a1K.k3-01_02"})
@ValueSource(strings = {"/", "foo", "foo-bar", "foo_bar", "foo.bar", "/foo", "/foo/", "a1K.k3-01_02", "keyWithBrackets[]"})
void testPutAndGet_withStrings(final String key) {
final UUID value = UUID.randomUUID();

Expand Down Expand Up @@ -280,7 +280,7 @@ public void testOverwritingExistingKey() {
}

@ParameterizedTest
@ValueSource(strings = {"/", "foo", "/foo", "/foo/bar", "foo/bar", "foo/bar/", "/foo/bar/leaf/key"})
@ValueSource(strings = {"/", "foo", "/foo", "/foo/bar", "foo/bar", "foo/bar/", "/foo/bar/leaf/key", "keyWithBrackets[]"})
public void testDeleteKey(final String key) {
event.put(key, UUID.randomUUID());
event.delete(key);
Expand Down
4 changes: 0 additions & 4 deletions data-prepper-plugins/flatten-processor/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -3,10 +3,6 @@
* SPDX-License-Identifier: Apache-2.0
*/

plugins {
id 'java'
}

jacocoTestCoverageVerification {
dependsOn jacocoTestReport
violationRules {
Expand Down

0 comments on commit 68ffe5a

Please sign in to comment.