Remove spaces in NOLINT comments (#5407)

clang-tidy ignores the category filter if there's a space. wpiformat now
ignores categories it doesn't understand, so we can remove the spaces.
This commit is contained in:
Tyler Veness
2023-06-20 20:29:23 -07:00
committed by GitHub
parent 3a0e484691
commit 5d3a133f9f
8 changed files with 15 additions and 15 deletions

View File

@@ -27,7 +27,7 @@ TEST_F(CommandPtrTest, MovedFrom) {
EXPECT_NO_FATAL_FAILURE(scheduler.Cancel(movedTo));
EXPECT_THROW(scheduler.Schedule(movedFrom), frc::RuntimeError);
// NOLINTNEXTLINE (clang-analyzer-cplusplus.Move)
// NOLINTNEXTLINE(clang-analyzer-cplusplus.Move)
EXPECT_THROW(movedFrom.IsScheduled(), frc::RuntimeError);
EXPECT_THROW(static_cast<void>(std::move(movedFrom).Repeatedly()),
frc::RuntimeError);