From cf5d3c83a1962693ada3df4b2f13a7882952c056 Mon Sep 17 00:00:00 2001
From: "A.J. Beamon" <aj.beamon@snowflake.com>
Date: Thu, 14 Apr 2022 12:03:39 -0700
Subject: [PATCH] Fix formatting issues.

---
 fdbserver/tester.actor.cpp                    | 4 ++--
 fdbserver/workloads/WriteDuringRead.actor.cpp | 6 ++----
 2 files changed, 4 insertions(+), 6 deletions(-)

diff --git a/fdbserver/tester.actor.cpp b/fdbserver/tester.actor.cpp
index f710cfa93c..64b9924560 100644
--- a/fdbserver/tester.actor.cpp
+++ b/fdbserver/tester.actor.cpp
@@ -758,8 +758,8 @@ ACTOR Future<Void> clearData(Database cx) {
 			// If the result is non-empty, it is possible that there is some bad interaction between the test
 			// and the optional simulated default tenant:
 			//
-			// 1. If the test is creating/deleting tenants itself, then it should disable the default tenant. 
-			// 2. If the test is opening Database objects itself, then it needs to propagate the default tenant 
+			// 1. If the test is creating/deleting tenants itself, then it should disable the default tenant.
+			// 2. If the test is opening Database objects itself, then it needs to propagate the default tenant
 			//    value from the existing Database.
 			// 3. If the test is using raw access or system key access and writing to the normal key-space, then
 			//    it should disable the default tenant.
diff --git a/fdbserver/workloads/WriteDuringRead.actor.cpp b/fdbserver/workloads/WriteDuringRead.actor.cpp
index 39a6f1b1f6..b2f627284e 100644
--- a/fdbserver/workloads/WriteDuringRead.actor.cpp
+++ b/fdbserver/workloads/WriteDuringRead.actor.cpp
@@ -114,7 +114,7 @@ struct WriteDuringReadWorkload : TestWorkload {
 
 	std::string description() const override { return "WriteDuringRead"; }
 
-	ACTOR Future<Void> setupImpl(WriteDuringReadWorkload *self, Database cx) {
+	ACTOR Future<Void> setupImpl(WriteDuringReadWorkload* self, Database cx) {
 		// If we are operating in the default tenant but enable raw access, we should only write keys
 		// in the tenant's key-space.
 		if (self->useSystemKeys && cx->defaultTenant.present() && self->keyPrefix < systemKeys.begin) {
@@ -124,9 +124,7 @@ struct WriteDuringReadWorkload : TestWorkload {
 		return Void();
 	}
 
-	Future<Void> setup(Database const& cx) override {
-		return setupImpl(this, cx);
-	}
+	Future<Void> setup(Database const& cx) override { return setupImpl(this, cx); }
 
 	Future<Void> start(Database const& cx) override {
 		if (clientId == 0)