diff --git a/contest/remote/kunit.py b/contest/remote/kunit.py index 88edb84..6e8332a 100755 --- a/contest/remote/kunit.py +++ b/contest/remote/kunit.py @@ -73,7 +73,9 @@ def load_expected(config): for l in lines: if not l: continue - words = l.split() + words = l.strip().split('|') + if len(words) != 3: + words = l.split() if words[0] not in expected: expected[words[0]] = {} grp = expected[words[0]]