add check for trailing output characters
This commit is contained in:
parent
bb5b8f115a
commit
e978f26263
1 changed files with 1 additions and 1 deletions
|
|
@ -683,7 +683,7 @@ const ZiglingStep = struct {
|
|||
}
|
||||
|
||||
// validate the output
|
||||
if (std.mem.indexOf(u8, output, self.exercise.output) == null) {
|
||||
if (std.mem.indexOf(u8, output, self.exercise.output) == null or output.len != self.exercise.output.len) {
|
||||
print(
|
||||
\\
|
||||
\\{s}----------- Expected this output -----------{s}
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue