Two minor fixes

- fix unit test to be re-runnable
- fix (My)SQL typo in comment

git-svn-id: https://svn.alfresco.com/repos/alfresco-enterprise/alfresco/HEAD/root@8364 c4b6b30b-aa2e-2d43-bbcb-ca4b014f7261
This commit is contained in:
Jan Vonka
2008-02-22 15:43:51 +00:00
parent 3fd94a9f7f
commit 27f525c54e
2 changed files with 191 additions and 191 deletions

View File

@@ -176,7 +176,7 @@ system.workflow_container.childname=sys:workflow
# NOTE: If you are using mysql you must have case sensitive collation
#
# You can do this when creating the alfresco database at the start
# CREATE DATABASE alfresco CHARACTER SET utf8 COLLATION utf8_bin;
# CREATE DATABASE alfresco CHARACTER SET utf8 COLLATE utf8_bin;
# If you want to do this later this is a dump and load fix as it is done when the database, tables and columns are created.
#
# Must other databases are case sensitive by default.

View File

@@ -117,7 +117,7 @@ public class RegistryServiceImplTest extends TestCase
assertNull("Missing key should return null value", registryService.getProperty(KEY_A_B_C_0));
assertNull("Missing key should return null value", registryService.getProperty(KEY_A_B_C_D_0));
assertNull("Missing key should return null value", registryService.getProperty(KEY_X_Y_Z_0));
assertNull("Missing key should return null value", registryService.getProperty(KEY_DOES_NOT_EXIST));
}
public void testGetElements() throws Exception