Skip to content

Commit a599a61

Browse files
authored
[flang] match the actual data size with the KIND (NFC) (#73179)
1 parent 546a9ce commit a599a61

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

flang/unittests/Runtime/MatmulTranspose.cpp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -206,7 +206,7 @@ TEST(MatmulTranspose, Basic) {
206206
auto yLog{MakeArray<TypeCategory::Logical, 2>(std::vector<int>{3, 2},
207207
std::vector<std::uint16_t>{false, false, false, true, true, false})};
208208
auto vLog{MakeArray<TypeCategory::Logical, 1>(
209-
std::vector<int>{3}, std::vector<std::uint16_t>{true, false, true})};
209+
std::vector<int>{3}, std::vector<std::uint8_t>{true, false, true})};
210210
RTNAME(MatmulTranspose)(result, *xLog, *yLog, __FILE__, __LINE__);
211211
ASSERT_EQ(result.rank(), 2);
212212
EXPECT_EQ(result.GetDimension(0).LowerBound(), 1);

0 commit comments

Comments
 (0)