Fix build error from extra comma (#3516)

The newer rocm compiler gives an error with a trailing comma in testing::AllOf.
This commit is contained in:
John Shumway
2026-01-06 11:08:54 -08:00
committed by GitHub
parent 2ffbf7f476
commit 960ef551bf

View File

@@ -30,7 +30,7 @@ TEST(HipError, SourceInfo)
// ...the filename
HasSubstr("experimental/builder/test/unit_error.cpp"),
// ...the function name
HasSubstr("throw_error"),
HasSubstr("throw_error")
// Note: Don't include the row/column so that we can move
// stuff around in this file.
)));