Skip to content

Commit

Permalink
Fix casing on test data folder /authroization/partylist (#9547)
Browse files Browse the repository at this point in the history
Co-authored-by: Ivar <[email protected]>
  • Loading branch information
ivarne and ivarne authored Jan 11, 2023
1 parent 273d928 commit e431fbd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion src/Services/TestData/TestDataDiskReader.cs
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ public static async Task<TestDataModel> ReadFromDisk(string testDataPath)
var testData = new TestDataModel();
await ReadFolderToDictionary(Path.Join(testDataPath, "authorization", "claims"), testData.Authorization.Claims);
await ReadRoles(testDataPath, testData);
await ReadFolderToDictionary(Path.Join(testDataPath, "authorization", "partyList"), testData.Authorization.PartyList);
await ReadFolderToDictionary(Path.Join(testDataPath, "authorization", "partylist"), testData.Authorization.PartyList);
await ReadFolderToDictionary(Path.Join(testDataPath, "Profile", "User"), testData.Profile.User);
await ReadFolderToDictionary(Path.Join(testDataPath, "Register", "Org"), testData.Register.Org);
await ReadFolderToDictionary(Path.Join(testDataPath, "Register", "Party"), testData.Register.Party);
Expand Down

0 comments on commit e431fbd

Please sign in to comment.