File tree Expand file tree Collapse file tree 1 file changed +0
-9
lines changed
Expand file tree Collapse file tree 1 file changed +0
-9
lines changed Original file line number Diff line number Diff line change @@ -366,12 +366,10 @@ class TimeZoneNativeTest {
366366 for ((zoneId, localDateTimes) in timeZoneRulesTestCases) {
367367 val regularRules = tzdb.rulesForId(zoneId)
368368 val foundationRules = TimeZoneRulesFoundation (zoneId)
369- println (formatHeader(zoneId))
370369
371370 for ((localDateTime, expectedType) in localDateTimes) {
372371 val regularInfo = regularRules.infoAtDatetime(localDateTime)
373372 val foundationInfo = foundationRules.infoAtDatetime(localDateTime)
374- println (" regularInfo: $regularInfo , foundationInfo: $foundationInfo " )
375373
376374 assertOffsetInfoType(foundationInfo, expectedType)
377375
@@ -389,13 +387,6 @@ class TimeZoneNativeTest {
389387 assertEquals(expectedType, actualType)
390388 }
391389
392- private fun formatHeader (zoneId : String , preferredLength : Int = 75): String {
393- val total = preferredLength - zoneId.length - 2
394- val leftPart = " -" .repeat(total / 2 )
395- val rightPart = " -" .repeat(total / 2 + total % 2 )
396- return " $leftPart $zoneId $rightPart "
397- }
398-
399390 // timeZone.atZone(LocalDateTime) tests
400391
401392 @Test
You can’t perform that action at this time.
0 commit comments