Procházet zdrojové kódy

Remove duplicated lines

Daniel Mita před 10 roky
rodič
revize
b51a531c7e
No account linked to committer's email

+ 0
- 6
exercises/hello-world/build.gradle Zobrazit soubor

16
     events = ["passed", "failed", "skipped"]
16
     events = ["passed", "failed", "skipped"]
17
   }
17
   }
18
 }
18
 }
19
-test {
20
-  testLogging {
21
-    exceptionFormat = 'full'
22
-    events = ["passed", "failed", "skipped"]
23
-  }
24
-}

+ 0
- 1
exercises/hello-world/src/test/java/HelloWorldTest.java Zobrazit soubor

1
 import org.junit.Test;
1
 import org.junit.Test;
2
 import org.junit.Ignore;
2
 import org.junit.Ignore;
3
-import org.junit.Ignore;
4
 
3
 
5
 import static org.junit.Assert.assertEquals;
4
 import static org.junit.Assert.assertEquals;
6
 
5