Skip to content

Commit 3341c18

Browse files
committed
Fixed format linting
1 parent 820104f commit 3341c18

12 files changed

Lines changed: 17 additions & 17 deletions

File tree

tests/KeeperData.Core.Tests.Unit/ApiContracts/MockSamDataFactoryTests.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -112,4 +112,4 @@ public void GivenMockSamDataFactory_WhenCallingCreateMockData_ShouldProduceValid
112112
party.CHANGE_TYPE.Should().Be(DataBridgeConstants.ChangeTypeInsert);
113113
party.PARTY_ID.Should().NotBeNull().And.Be(herd.KeeperPartyIdList[0]);
114114
}
115-
}
115+
}

tests/KeeperData.Tests.Common/Factories/MockCtsDataFactory.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -61,7 +61,7 @@ public CtsAgentOrKeeper CreateMockAgentOrKeeper(
6161
_fixture.Customizations.Add(new CtsCphHoldingBuilder(changeType, batchId, holdingIdentifier));
6262

6363
var holdings = _fixture.CreateMany<CtsCphHolding>(holdingCount).ToList();
64-
64+
6565
_fixture.Customizations.Add(new CtsAgentOrKeeperBuilder(changeType, batchId, holdingIdentifier));
6666

6767
var agents = _fixture.CreateMany<CtsAgentOrKeeper>(agentCount).ToList();

tests/KeeperData.Tests.Common/Factories/MockSamDataFactory.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -115,10 +115,10 @@ public SamParty CreateMockParty(
115115
foreach (var item in animalSpeciesAndProductionUsageCodes)
116116
{
117117
herdSpeciesParties.Add(
118-
item,
118+
item,
119119
PersonGenerator.GetPartyIds(partyCount));
120120
}
121121

122122
return herdSpeciesParties;
123123
}
124-
}
124+
}

tests/KeeperData.Tests.Common/Generators/AddressGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -77,4 +77,4 @@ public static (
7777
{
7878
return allowNulls && s_random.Next(2) == 0 ? null : $"NN {s_random.Next(100, 999)} {s_random.Next(100, 999)}";
7979
}
80-
}
80+
}

tests/KeeperData.Tests.Common/Generators/CommunicationGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -24,4 +24,4 @@ public static class CommunicationGenerator
2424
? null
2525
: $"email{s_random.Next(100)}@test-email.com";
2626
}
27-
}
27+
}

tests/KeeperData.Tests.Common/Generators/FacilityGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -49,4 +49,4 @@ string animalProductionUsageCode
4949
animalSpeciesCode,
5050
animalProductionUsageCode);
5151
}
52-
}
52+
}

tests/KeeperData.Tests.Common/Generators/IntervalGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,4 +13,4 @@ public static (decimal? interval, string? intervalUnit) GenerateInterval(bool al
1313

1414
return (interval, intervalUnit);
1515
}
16-
}
16+
}

tests/KeeperData.Tests.Common/Generators/RoleGenerator.cs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -30,4 +30,4 @@ public class RoleGenerator
3030

3131
return roles;
3232
}
33-
}
33+
}

tests/KeeperData.Tests.Common/SpecimenBuilders/SamCphHolderBuilder.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -77,12 +77,12 @@ public object Create(object request, ISpecimenContext context)
7777
PREFERRED_CONTACT_METHOD_IND = 'T',
7878

7979
CPHS = string.Join(",", _holdingIdentifiers),
80-
80+
8181
BATCH_ID = _batchId,
8282
CHANGE_TYPE = _fixedChangeType
8383
};
8484
}
8585

8686
return new NoSpecimen();
8787
}
88-
}
88+
}

tests/KeeperData.Tests.Common/SpecimenBuilders/SamCphHoldingBuilder.cs

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -92,7 +92,7 @@ public object Create(object request, ISpecimenContext context)
9292

9393
CPH_RELATIONSHIP_TYPE = _allowNulls && _random.Next(2) == 0 ? null : Guid.NewGuid().ToString(),
9494
SECONDARY_CPH = _allowNulls && _random.Next(2) == 0 ? null : CphGenerator.GenerateFormattedCph(),
95-
95+
9696
FACILITY_BUSINSS_ACTVTY_CODE = businessActivityCode,
9797
FACILITY_TYPE_CODE = facilityTypeCode,
9898
FCLTY_SUB_BSNSS_ACTVTY_CODE = businessSubActivityCode,
@@ -101,7 +101,7 @@ public object Create(object request, ISpecimenContext context)
101101
MOVEMENT_RSTRCTN_RSN_CODE = movementRestrictionCode,
102102

103103
ANIMAL_SPECIES_CODE = animalSpeciesCode,
104-
ANIMAL_PRODUCTION_USAGE_CODE = animalProductionUsageCode,
104+
ANIMAL_PRODUCTION_USAGE_CODE = animalProductionUsageCode,
105105

106106
BATCH_ID = _batchId,
107107
CHANGE_TYPE = _fixedChangeType
@@ -110,4 +110,4 @@ public object Create(object request, ISpecimenContext context)
110110

111111
return new NoSpecimen();
112112
}
113-
}
113+
}

0 commit comments

Comments
 (0)