Remove system.out.println in testcases

This commit is contained in:
2020-11-05 10:18:53 +01:00
parent fbbac7fdb0
commit 5862a99d73
12 changed files with 39 additions and 39 deletions

View File

@@ -9,8 +9,8 @@ public class TLWMatchesUpdaterFootballTest {
TLWMatchesUpdaterFootball updater = new TLWMatchesUpdaterFootball(2021, 1, "Tippliga.json");
String sql = updater.getUpdateSQL();
System.out.println(sql);
System.out.println(updater.getBeautifulInfo());
// System.out.println(sql);
// System.out.println(updater.getBeautifulInfo());
}
@Test
@@ -18,8 +18,8 @@ public class TLWMatchesUpdaterFootballTest {
TLWMatchesUpdaterFootball updater = new TLWMatchesUpdaterFootball(2021, 2, "Tippliga.json");
String sql = updater.getUpdateSQL();
System.out.println(sql);
System.out.println(updater.getBeautifulInfo());
// System.out.println(sql);
// System.out.println(updater.getBeautifulInfo());
}
@Test
@@ -27,7 +27,7 @@ public class TLWMatchesUpdaterFootballTest {
TLWMatchesUpdaterFootball updater = new TLWMatchesUpdaterFootball(2021, 48, "WTL_Pokal.json");
String sql = updater.getUpdateSQL();
System.out.println(sql);
System.out.println(updater.getBeautifulInfo());
// System.out.println(sql);
// System.out.println(updater.getBeautifulInfo());
}
}