From 7d64f7a53431bd42ef97a63698a48d7179dce9c7 Mon Sep 17 00:00:00 2001 From: Florian Klink Date: Sat, 28 Dec 2019 15:29:22 +0100 Subject: [PATCH] nixosTests.mysql: add missing () to start_all() Because mysql.wait_for_unit() starts the vm as well, we didn't notice that. --- nixos/tests/mysql.nix | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/nixos/tests/mysql.nix b/nixos/tests/mysql.nix index 2c0d212c2f1..b6b3625cc43 100644 --- a/nixos/tests/mysql.nix +++ b/nixos/tests/mysql.nix @@ -47,7 +47,7 @@ import ./make-test-python.nix ({ pkgs, ...} : { }; testScript = '' - start_all + start_all() mysql.wait_for_unit("mysql") mysql.succeed("echo 'use empty_testdb;' | mysql -u root")