Skip to content

Commit

Permalink
inverted the condition, oops
Browse files Browse the repository at this point in the history
  • Loading branch information
zeroshade committed Nov 15, 2024
1 parent 1f33739 commit 32cb80b
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions cpp/src/arrow/c/bridge_test.cc
Original file line number Diff line number Diff line change
Expand Up @@ -5317,8 +5317,8 @@ class TestAsyncDeviceArrayStreamRoundTrip : public BaseArrayStreamTest {
public:
void SetUp() override {
BaseArrayStreamTest::SetUp();
#ifdef ARROW_ENABLE_THREADING
GTEST_SKIP() << "Test requires ARROW_ENABLE_THREADING=OFF";
#ifndef ARROW_ENABLE_THREADING
GTEST_SKIP() << "Test requires ARROW_ENABLE_THREADING=ON";
#endif
}

Expand Down

0 comments on commit 32cb80b

Please sign in to comment.