Skip to content

Commit

Permalink
Fix IT tests
Browse files Browse the repository at this point in the history
Signed-off-by: Andrew Carbonetto <[email protected]>
  • Loading branch information
acarbonetto committed Feb 15, 2024
1 parent 35dc4d6 commit a50c9f3
Show file tree
Hide file tree
Showing 2 changed files with 3 additions and 1 deletion.
2 changes: 2 additions & 0 deletions java/integTest/build.gradle
Original file line number Diff line number Diff line change
Expand Up @@ -10,6 +10,8 @@ dependencies {
// client
implementation project(':client')

implementation group: 'org.apache.commons', name: 'commons-lang3', version: '3.13.0'

// https://github.com/netty/netty/wiki/Native-transports
// At the moment, Windows is not supported
implementation group: 'io.netty', name: 'netty-transport-native-epoll', version: '4.1.100.Final', classifier: 'linux-x86_64'
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -95,7 +95,7 @@ public void test_standalone_transactions() {
Object[] expectedResult = transactionTestResult();

transaction.select(0);
ArrayUtils.addFirst(expectedResult, OK);
expectedResult = ArrayUtils.add(expectedResult, OK);

Object[] result = client.exec(transaction).get(10, TimeUnit.SECONDS);
assertArrayEquals(expectedResult, result);
Expand Down

0 comments on commit a50c9f3

Please sign in to comment.