Skip to content

Commit

Permalink
chore: Migrate tests off TextPrinter's deprecated methods (googleapis…
Browse files Browse the repository at this point in the history
  • Loading branch information
lqiu96 committed May 24, 2024
1 parent ed4d1a3 commit 8ea06a8
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -102,7 +102,7 @@ public void testLongRunningReadSession() throws InterruptedException, ExecutionE
assertEquals(
String.format(
"Did not receive expected number of streams for table reference '%s' CreateReadSession response:%n%s",
TextFormat.shortDebugString(tableReference), session.toString()),
TextFormat.printer().shortDebugString(tableReference), session.toString()),
5,
session.getStreamsCount());

Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -207,7 +207,7 @@ public void testSimpleRead() {
assertEquals(
String.format(
"Did not receive expected number of streams for table reference '%s' CreateReadSession response:%n%s",
TextFormat.shortDebugString(tableReference), session.toString()),
TextFormat.printer().shortDebugString(tableReference), session.toString()),
1,
session.getStreamsCount());

Expand Down Expand Up @@ -246,7 +246,7 @@ public void testSimpleReadArrow() {
assertEquals(
String.format(
"Did not receive expected number of streams for table reference '%s' CreateReadSession response:%n%s",
TextFormat.shortDebugString(tableReference), session.toString()),
TextFormat.printer().shortDebugString(tableReference), session.toString()),
1,
session.getStreamsCount());

Expand Down Expand Up @@ -300,7 +300,7 @@ public void testRangeType() throws InterruptedException {
assertEquals(
String.format(
"Did not receive expected number of streams for table reference '%s' CreateReadSession response:%n%s",
TextFormat.shortDebugString(tableReference), session.toString()),
TextFormat.printer().shortDebugString(tableReference), session.toString()),
1,
session.getStreamsCount());

Expand Down Expand Up @@ -337,7 +337,7 @@ public void testSimpleReadAndResume() {
assertEquals(
String.format(
"Did not receive expected number of streams for table reference '%s' CreateReadSession response:%n%s",
TextFormat.shortDebugString(tableReference), session.toString()),
TextFormat.printer().shortDebugString(tableReference), session.toString()),
1,
session.getStreamsCount());

Expand Down Expand Up @@ -388,7 +388,7 @@ public void testFilter() throws IOException {
assertEquals(
String.format(
"Did not receive expected number of streams for table reference '%s' CreateReadSession response:%n%s",
TextFormat.shortDebugString(tableReference), session.toString()),
TextFormat.printer().shortDebugString(tableReference), session.toString()),
1,
session.getStreamsCount());

Expand Down Expand Up @@ -451,7 +451,7 @@ public void testColumnSelection() throws IOException {
assertEquals(
String.format(
"Did not receive expected number of streams for table reference '%s' CreateReadSession response:%n%s",
TextFormat.shortDebugString(tableReference), session.toString()),
TextFormat.printer().shortDebugString(tableReference), session.toString()),
1,
session.getStreamsCount());

Expand Down Expand Up @@ -1079,7 +1079,7 @@ public void testUniverseDomainWithMatchingDomain() throws IOException {
assertEquals(
String.format(
"Did not receive expected number of streams for table reference '%s' CreateReadSession response:%n%s",
TextFormat.shortDebugString(tableReference), session.toString()),
TextFormat.printer().shortDebugString(tableReference), session.toString()),
1,
session.getStreamsCount());

Expand Down Expand Up @@ -1208,7 +1208,7 @@ private void ProcessRowsAtSnapshot(
assertEquals(
String.format(
"Did not receive expected number of streams for table reference '%s' CreateReadSession response:%n%s",
TextFormat.shortDebugString(tableReference), session.toString()),
TextFormat.printer().shortDebugString(tableReference), session.toString()),
1,
session.getStreamsCount());

Expand Down

0 comments on commit 8ea06a8

Please sign in to comment.