Skip to content

Commit

Permalink
fix namespace misuse: Part 9 (facebookincubator#99)
Browse files Browse the repository at this point in the history
Summary:
Pull Request resolved: facebookincubator#99

Directory:
//dwio/nimble/tablet/

Reviewed By: darrenfu

Differential Revision: D64257010

fbshipit-source-id: 475bf2ae5a26ad59a040fdb4041d3c460bcf2d2f
  • Loading branch information
Hanqi Wu authored and facebook-github-bot committed Oct 15, 2024
1 parent 9afbbb8 commit a417531
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions dwio/nimble/tablet/tests/TabletTests.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
#include "velox/common/memory/Memory.h"
#include "velox/dwio/common/ExecutorBarrier.h"

using namespace ::facebook;
using namespace facebook;

namespace {

Expand Down Expand Up @@ -231,9 +231,9 @@ void parameterizedTest(
errorVerifier.value()(e);

// If errorVerifier detected an error, log the exception
if (testing::Test::HasFatalFailure()) {
if (::testing::Test::HasFatalFailure()) {
FAIL() << "Failed verifying exception: " << e.what();
} else if (testing::Test::HasNonfatalFailure()) {
} else if (::testing::Test::HasNonfatalFailure()) {
LOG(WARNING) << "Failed verifying exception: " << e.what();
}
}
Expand Down

0 comments on commit a417531

Please sign in to comment.