Skip to content

Commit 3ac436b

Browse files
committed
fix linting
1 parent de7b0b6 commit 3ac436b

File tree

2 files changed

+3
-6
lines changed

2 files changed

+3
-6
lines changed

cpp/src/plasma/client.h

+1-2
Original file line numberDiff line numberDiff line change
@@ -71,8 +71,7 @@ class ARROW_EXPORT PlasmaClient {
7171
/// \return The return status.
7272
Status Connect(const std::string& store_socket_name,
7373
const std::string& manager_socket_name,
74-
int release_delay = kPlasmaDefaultReleaseDelay,
75-
int num_retries = -1);
74+
int release_delay = kPlasmaDefaultReleaseDelay, int num_retries = -1);
7675

7776
/// Create an object in the Plasma Store. Any metadata for this object must be
7877
/// be passed in when the object is created.

cpp/src/plasma/test/client_tests.cc

+2-4
Original file line numberDiff line numberDiff line change
@@ -59,10 +59,8 @@ class TestPlasmaStore : public ::testing::Test {
5959
"/plasma_store -m 1000000000 -s /tmp/store" +
6060
store_index + " 1> /dev/null 2> /dev/null &";
6161
system(plasma_command.c_str());
62-
ARROW_CHECK_OK(
63-
client_.Connect("/tmp/store" + store_index, ""));
64-
ARROW_CHECK_OK(
65-
client2_.Connect("/tmp/store" + store_index, ""));
62+
ARROW_CHECK_OK(client_.Connect("/tmp/store" + store_index, ""));
63+
ARROW_CHECK_OK(client2_.Connect("/tmp/store" + store_index, ""));
6664
}
6765
virtual void TearDown() {
6866
ARROW_CHECK_OK(client_.Disconnect());

0 commit comments

Comments
 (0)