Minor fix in test code

This commit is contained in:
Kleissner
2021-12-08 04:19:04 +01:00
parent a26900755b
commit 4aa15d6a78

View File

@@ -60,11 +60,11 @@ func TestBlockEncoding(t *testing.T) {
case BlockRecordFile:
printFile(record)
case BlockRecordProfile:
printProfileField(record)
case []BlockRecordProfile:
for _, profileR := range record {
printProfileField(profileR)
}
}
}
}