From: Tomek Mrugalski Date: Mon, 24 Apr 2017 20:17:41 +0000 (+0200) Subject: [master] Pushed fix for admin unit-tests after recent schema change. X-Git-Tag: trac5212_base~9 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=5ef1b2a9156eb9d9569d673f5c1fcfae3936db4a;p=thirdparty%2Fkea.git [master] Pushed fix for admin unit-tests after recent schema change. --- diff --git a/src/bin/admin/tests/mysql_tests.sh.in b/src/bin/admin/tests/mysql_tests.sh.in index 6074b464af..446eed518c 100644 --- a/src/bin/admin/tests/mysql_tests.sh.in +++ b/src/bin/admin/tests/mysql_tests.sh.in @@ -300,7 +300,7 @@ EOF count=`mysql_execute "${qry}"` ERRCODE=$? assert_eq 0 $ERRCODE "select from host_identifier_type failed. (expected status code %d, returned %d)" - assert_eq 4 "$count" "host_identifier_type does not contain correct number of entries. (expected count %d, returned %d)" + assert_eq 5 "$count" "host_identifier_type does not contain correct number of entries. (expected count %d, returned %d)" # verify that foreign key fk_host_identifier_type exists qry="show create table hosts";