From 1b5293d4412cfbcc506967fa07292be8162e7a5e Mon Sep 17 00:00:00 2001 From: "E. Choroba" Date: Mon, 13 Jan 2025 00:13:51 +0100 Subject: [PATCH] fixup! In test t/12embedded.t use new Makefile.PL option --testemboptions --- t/12embedded.t | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/t/12embedded.t b/t/12embedded.t index ec183505..901eee22 100644 --- a/t/12embedded.t +++ b/t/12embedded.t @@ -60,7 +60,7 @@ my $dbh2 = connect_to_embedded_server($tmpdir1, 'dbd_mariadb_embedded'); ok(defined $dbh2, "Second connection to embedded server with datadir in $tmpdir1") or fatal_connection_error('embedded'); my $dbh3 = connect_to_embedded_server($tmpdir1, 'dbd_mariadb_embedded'); -ok(defined $dbh3, "Third conection to embedded server with datadir in $tmpdir1") or fatal_connection_error('embedded'); +ok(defined $dbh3, "Third connection to embedded server with datadir in $tmpdir1") or fatal_connection_error('embedded'); ok($dbh1->do('CREATE TABLE dbd_mariadb_embedded(id INT)'), 'Created table with first connection'); ok($dbh2->do('INSERT INTO dbd_mariadb_embedded(id) VALUES(10)'), 'Inserted values into table with second connection');