aboutsummaryrefslogtreecommitdiffhomepage
path: root/tensorflow/compiler/xla/service/hlo_instruction_test.cc
diff options
context:
space:
mode:
Diffstat (limited to 'tensorflow/compiler/xla/service/hlo_instruction_test.cc')
-rw-r--r--tensorflow/compiler/xla/service/hlo_instruction_test.cc4
1 files changed, 2 insertions, 2 deletions
diff --git a/tensorflow/compiler/xla/service/hlo_instruction_test.cc b/tensorflow/compiler/xla/service/hlo_instruction_test.cc
index cdafc05d8c..9affecae60 100644
--- a/tensorflow/compiler/xla/service/hlo_instruction_test.cc
+++ b/tensorflow/compiler/xla/service/hlo_instruction_test.cc
@@ -1203,13 +1203,13 @@ TEST_F(HloInstructionTest, Stringification) {
EXPECT_EQ(fusion->ToString(false, false),
"%fusion = f32[5,20]{1,0} fusion:kTransposeDot(f32[5,10]{1,0} %x, "
- "f32[20,10]{1,0} %y), calls=fused_computation");
+ "f32[20,10]{1,0} %y), calls=%fused_computation");
HloInstruction* loop = builder.AddInstruction(
HloInstruction::CreateWhile(sout, computation, computation, x));
EXPECT_EQ(loop->ToString(false, false),
"%while = f32[5,20]{1,0} while(f32[5,10]{1,0} %x), "
- "condition=TransposeDot, body=TransposeDot");
+ "condition=%TransposeDot, body=%TransposeDot");
}
} // namespace