There's no reason to use literal boolean values in assertions. Doing so is at best confusing for maintainers, and at worst a bug.
Assert.assertTrue(true); // Noncompliant assertThat(true).isTrue(); // Noncompliant