From c54bb616422cd852980d8aaaaf84604f5d368e56 Mon Sep 17 00:00:00 2001 From: "U-BASIS\\zhaohui" Date: Thu, 28 Sep 2017 16:41:02 -0400 Subject: [PATCH] nojira: revert the test for failed unit test --- .../autopsy/keywordsearch/CreditCardValidatorTest.java | 2 -- 1 file changed, 2 deletions(-) diff --git a/KeywordSearch/test/unit/src/org/sleuthkit/autopsy/keywordsearch/CreditCardValidatorTest.java b/KeywordSearch/test/unit/src/org/sleuthkit/autopsy/keywordsearch/CreditCardValidatorTest.java index e4e12be0a1..e59b2b98f3 100644 --- a/KeywordSearch/test/unit/src/org/sleuthkit/autopsy/keywordsearch/CreditCardValidatorTest.java +++ b/KeywordSearch/test/unit/src/org/sleuthkit/autopsy/keywordsearch/CreditCardValidatorTest.java @@ -21,7 +21,6 @@ package org.sleuthkit.autopsy.keywordsearch; import org.junit.After; import org.junit.AfterClass; import static org.junit.Assert.assertEquals; -import static org.junit.Assert.fail; import org.junit.Before; import org.junit.BeforeClass; import org.junit.Test; @@ -230,7 +229,6 @@ public class CreditCardValidatorTest { assertEquals(false, CreditCardValidator.isValidCCN("123456789030")); //luhn assertEquals(false, CreditCardValidator.isValidCCN("123 456789031")); //grouping assertEquals(false, CreditCardValidator.isValidCCN("1234-56789 031")); //separators - fail("Please email me this is failed."); } }