Skip to content

Commit 10a456a

Browse files
committed
adhered to desired coding style
avoid clang-format issue
1 parent 5144ad0 commit 10a456a

1 file changed

Lines changed: 3 additions & 3 deletions

File tree

exercises/practice/bank-account/bank_account_test.cpp

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -154,11 +154,11 @@ TEST_CASE("Can handle concurrent transactions",
154154
vec_of_threads.push_back(std::thread([&]() {
155155
using namespace std::chrono_literals;
156156
for (int j{0}; j < 100; ++j) {
157-
account.deposit(1);
158-
std::this_thread::sleep_for(1ms);
157+
account.deposit(1);
158+
std::this_thread::sleep_for(1ms);
159159
}
160160
for (int j{0}; j < 100; ++j) {
161-
account.withdraw(1);
161+
account.withdraw(1);
162162
}
163163
}));
164164
}

0 commit comments

Comments
 (0)