Skip to content

Commit

Permalink
Automated Code Change
Browse files Browse the repository at this point in the history
PiperOrigin-RevId: 632771839
  • Loading branch information
tensorflower-gardener committed May 11, 2024
1 parent 4dd3914 commit e472760
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion tensorflow/core/common_runtime/eager/attr_builder_test.cc
Expand Up @@ -132,7 +132,7 @@ TEST(AttrBuilder, GetTypeAndNumber) {

TEST(AttrBuilder, GetTypeList) {
AttrBuilder a("IdentityN");
a.Set("T", gtl::ArraySlice<DataType>({DT_FLOAT, DT_INT64}));
a.Set("T", absl::Span<const DataType>({DT_FLOAT, DT_INT64}));
absl::InlinedVector<DataType, 4> type_list;
Status s = a.GetTypeList("T", &type_list);
ASSERT_TRUE(s.ok()) << s;
Expand Down

0 comments on commit e472760

Please sign in to comment.