Skip to content

Commit 34f6d4f

Browse files
committed
Better error messages
1 parent 7cbba1b commit 34f6d4f

File tree

1 file changed

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

1 file changed

+4
-3
lines changed

wundergraph_cli/src/print_schema/mod.rs

+4-3
Original file line numberDiff line numberDiff line change
@@ -327,9 +327,10 @@ 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+
331+
t1.unwrap();
332+
t2.unwrap();
333+
t3.unwrap();
333334
}
334335

335336
fn request_test(

0 commit comments

Comments
 (0)