Skip to content

Commit a6f16aa

Browse files
committed
Better error messages
1 parent 7cbba1b commit a6f16aa

File tree

1 file changed

+3
-3
lines changed
  • wundergraph_cli/src/print_schema

1 file changed

+3
-3
lines changed

wundergraph_cli/src/print_schema/mod.rs

+3-3
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,9 @@ mod tests {
327327
child.kill().unwrap();
328328
child.wait().unwrap();
329329

330-
if t1.is_err() || t2.is_err() || t3.is_err() {
331-
panic!("round_trip failed")
332-
}
330+
t1.unwrap();
331+
t2.unwrap();
332+
t3.unwrap();
333333
}
334334

335335
fn request_test(

0 commit comments

Comments
 (0)