diff --git a/src/test/groovy/au/org/ala/merit/GmsMapperSpec.groovy b/src/test/groovy/au/org/ala/merit/GmsMapperSpec.groovy index 56085dfef..f70b4511d 100644 --- a/src/test/groovy/au/org/ala/merit/GmsMapperSpec.groovy +++ b/src/test/groovy/au/org/ala/merit/GmsMapperSpec.groovy @@ -54,7 +54,7 @@ class GmsMapperSpec extends Specification{ 'GreenArmy-1234567-1' == project.externalId 'Test Project Name' == project.name 'Test Project Description' == project.description - [[organisationId:"123", name:"Test org 1", organisationName:"Test org 1", description:"Recipient"]] == project.associatedOrgs + [[organisationId:"123", name:"Test org 1", description:"Recipient"]] == project.associatedOrgs 'gar1' == project.programId [[idType:'INTERNAL_ORDER_NUMBER', externalId:'111111']] == project.externalIds @@ -249,7 +249,7 @@ class GmsMapperSpec extends Specification{ 1 * abnLookupService.lookupOrganisationDetailsByABN(abn) >> abnValue and: - result.project.associatedOrgs == [[organisationId:null, name:"Test org 12345678900", organisationName:"Test org 12345678900", description:"Recipient"]] + result.project.associatedOrgs == [[organisationId:null, name:"Test org 12345678900", description:"Recipient"]] result.messages[0] == "An organisation will be created with ABN: 12345678900 and name: Test org 12345678900" } @@ -266,7 +266,7 @@ class GmsMapperSpec extends Specification{ 1 * abnLookupService.lookupOrganisationDetailsByABN(abn) >> abnValue and: - result.project.associatedOrgs == [[organisationId:null, name:"Test org 12345678900", organisationName:"Test org 12345678900", description:"Recipient"]] + result.project.associatedOrgs == [[organisationId:null, name:"Test org 12345678900", description:"Recipient"]] result.messages[0] == "An organisation will be created with ABN: 12345678900 and name: Test org 12345678900" } diff --git a/src/test/groovy/au/org/ala/merit/ImportServiceSpec.groovy b/src/test/groovy/au/org/ala/merit/ImportServiceSpec.groovy index 1400a0e02..298ee7847 100644 --- a/src/test/groovy/au/org/ala/merit/ImportServiceSpec.groovy +++ b/src/test/groovy/au/org/ala/merit/ImportServiceSpec.groovy @@ -134,7 +134,7 @@ class ImportServiceSpec extends Specification implements ServiceUnitTest