Remove extra semicolon from mapping fixtures

In some of the objects from mapping fixtures there were extra semicolons
in the end of some keys (attributes), which were causing to output empty
values once the mapping rules were being applied.

Change-Id: I7dce7322a2670495aac7dff3d0076582911a28d6
This commit is contained in:
Rodrigo Duarte Sousa 2015-01-17 23:28:27 -03:00
parent 8095134601
commit 5dcaf61c06
1 changed files with 7 additions and 7 deletions

View File

@ -741,7 +741,7 @@ EMPLOYEE_ASSERTION = {
'UserName': 'tbo',
'FirstName': 'Tim',
'LastName': 'Bo',
'orgPersonType': 'Employee;BuildingX;'
'orgPersonType': 'Employee;BuildingX'
}
EMPLOYEE_ASSERTION_PREFIXED = {
@ -749,7 +749,7 @@ EMPLOYEE_ASSERTION_PREFIXED = {
'PREFIX_UserName': 'tbo',
'PREFIX_FirstName': 'Tim',
'PREFIX_LastName': 'Bo',
'PREFIX_orgPersonType': 'SuperEmployee;BuildingX;'
'PREFIX_orgPersonType': 'SuperEmployee;BuildingX'
}
CONTRACTOR_ASSERTION = {
@ -757,7 +757,7 @@ CONTRACTOR_ASSERTION = {
'UserName': 'jsmith',
'FirstName': 'Jill',
'LastName': 'Smith',
'orgPersonType': 'Contractor;Non-Dev;'
'orgPersonType': 'Contractor;Non-Dev'
}
ADMIN_ASSERTION = {
@ -765,7 +765,7 @@ ADMIN_ASSERTION = {
'UserName': 'bob',
'FirstName': 'Bob',
'LastName': 'Thompson',
'orgPersonType': 'Admin;Chief;'
'orgPersonType': 'Admin;Chief'
}
CUSTOMER_ASSERTION = {
@ -773,7 +773,7 @@ CUSTOMER_ASSERTION = {
'UserName': 'bwilliams',
'FirstName': 'Beth',
'LastName': 'Williams',
'orgPersonType': 'Customer;'
'orgPersonType': 'Customer'
}
ANOTHER_CUSTOMER_ASSERTION = {
@ -801,7 +801,7 @@ BAD_TESTER_ASSERTION = {
'UserName': 'Evil',
'FirstName': 'Test',
'LastName': 'Account',
'orgPersonType': 'Tester;'
'orgPersonType': 'Tester'
}
BAD_DEVELOPER_ASSERTION = {
@ -817,7 +817,7 @@ MALFORMED_TESTER_ASSERTION = {
'UserName': 'testacct',
'FirstName': 'Test',
'LastName': 'Account',
'orgPersonType': 'Tester;',
'orgPersonType': 'Tester',
'object': object(),
'dictionary': dict(zip('teststring', xrange(10))),
'tuple': tuple(xrange(5))