From 7629125e1467d917ed302c6414ec98c42f95b4d2 Mon Sep 17 00:00:00 2001 From: James Oakley Date: Wed, 17 Apr 2024 08:25:33 -0400 Subject: [PATCH] Remove leftover debugging print --- butane/tests/migration-tests.rs | 1 - 1 file changed, 1 deletion(-) diff --git a/butane/tests/migration-tests.rs b/butane/tests/migration-tests.rs index 50f42f0c..864c2ffb 100644 --- a/butane/tests/migration-tests.rs +++ b/butane/tests/migration-tests.rs @@ -346,7 +346,6 @@ fn test_migrate( let mut to_apply = ms.unapplied_migrations(conn).unwrap(); assert_eq!(to_apply.len(), 2); for m in &to_apply { - eprintln!("{}", m.up_sql(backends[0].name()).unwrap().unwrap()); m.apply(conn).unwrap(); } verify_sql(conn, &ms, expected_up_sql, expected_down_sql);