Browse Source

[master] Pushed fix for admin unit-tests after recent schema change.

Tomek Mrugalski 8 years ago
parent
commit
5ef1b2a915
1 changed files with 1 additions and 1 deletions
  1. 1 1
      src/bin/admin/tests/mysql_tests.sh.in

+ 1 - 1
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";