mirror of
https://codeberg.org/scip/tablizer.git
synced 2025-12-17 04:30:56 +01:00
don't use die() anymore, butt dtd go errros
This commit is contained in:
@@ -54,7 +54,12 @@ asd igig cxxxncnc
|
||||
for mode, expect := range expects {
|
||||
OutputMode = mode
|
||||
fd := strings.NewReader(table)
|
||||
data := parseFile(fd, "")
|
||||
data, err := parseFile(fd, "")
|
||||
|
||||
if err != nil {
|
||||
t.Errorf("Parser returned error: %s\nData processed so far: %+v", err, data)
|
||||
}
|
||||
|
||||
printData(data)
|
||||
|
||||
buf := make([]byte, 1024)
|
||||
|
||||
Reference in New Issue
Block a user