Skip to content

Commit

Permalink
fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
anmolanmol1234 committed Jun 18, 2024
1 parent 63c060b commit 513aa52
Showing 1 changed file with 2 additions and 10 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -127,11 +127,7 @@ public void testCreateDirOverwrite(boolean enableConditionalCreateOverwrite)

// One request to server
AbfsClient client = fs.getAbfsStore().getClientHandler().getIngressClient();
if (client instanceof AbfsBlobClient) {
mkdirRequestCount+=2;
} else {
mkdirRequestCount++;
}
mkdirRequestCount++;

assertAbfsStatistics(
CONNECTIONS_MADE,
Expand All @@ -143,11 +139,7 @@ public void testCreateDirOverwrite(boolean enableConditionalCreateOverwrite)
fs.mkdirs(dirPath);

// One request to server
if (client instanceof AbfsBlobClient) {
mkdirRequestCount+=2;
} else {
mkdirRequestCount++;
}
mkdirRequestCount++;

assertAbfsStatistics(
CONNECTIONS_MADE,
Expand Down

0 comments on commit 513aa52

Please sign in to comment.