From f9bb76782caa71cda42cad4303d01b3f23558fb0 Mon Sep 17 00:00:00 2001 From: Basile Burg Date: Sat, 3 Sep 2016 22:31:32 +0200 Subject: [PATCH] fixup for #368, readme and source comment still stated the prev.behavior --- README.md | 2 +- src/analysis/useless_assert.d | 1 - 2 files changed, 1 insertion(+), 2 deletions(-) diff --git a/README.md b/README.md index 2fef1cb..551f61b 100644 --- a/README.md +++ b/README.md @@ -115,7 +115,7 @@ Note that the "--skipTests" option is the equivalent of changing each * Unused labels. * Lines longer than 120 characters. * Incorrect infinite range definitions. -* Some assertions that check conditions that will always be true. This check can't be skipped in the tests. +* Some assertions that check conditions that will always be true. #### Wishlist diff --git a/src/analysis/useless_assert.d b/src/analysis/useless_assert.d index 20432f3..82c8150 100644 --- a/src/analysis/useless_assert.d +++ b/src/analysis/useless_assert.d @@ -22,7 +22,6 @@ class UselessAssertCheck : BaseAnalyzer /// this(string fileName, bool skipTests = false) { - // assertions likely to be in unittest so never skip super(fileName, null, skipTests); }