Skip to content

Commit b4c7b00

Browse files
committed
chore(DesktopAgent/Tests): Undo FdsId changes
1 parent b9fd5bf commit b4c7b00

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

src/fdc3/dotnet/DesktopAgent/test/MorganStanley.ComposeUI.DesktopAgent.Tests/Channels/ChannelTestBase.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -120,7 +120,7 @@ public async void ChannelWithDifferentBroadcastsReturnsAppropriateContext()
120120
private int _counter;
121121
private MessageBuffer ContextType => MessageBuffer.Factory.CreateJson(new GetCurrentContextRequest { ContextType = new Contact().Type });
122122
private MessageBuffer OtherContextType => MessageBuffer.Factory.CreateJson(new GetCurrentContextRequest { ContextType = new Email(null).Type });
123-
private MessageBuffer GetContext() => MessageBuffer.Factory.CreateJson(new Contact(new ContactID() { Email = $"test{_counter}@test.org", FDS_ID = $"test{_counter++}" }, "Testy Tester"));
123+
private MessageBuffer GetContext() => MessageBuffer.Factory.CreateJson(new Contact(new ContactID() { Email = $"test{_counter}@test.org", FdsId = $"test{_counter++}" }, "Testy Tester"));
124124
private MessageBuffer DifferentContextType => MessageBuffer.Factory.CreateJson(new GetCurrentContextRequest { ContextType = new Currency().Type });
125125
private MessageBuffer GetDifferentContext() => MessageBuffer.Factory.CreateJson(new Currency(new CurrencyID() { CURRENCY_ISOCODE = "HUF" }));
126126

src/fdc3/dotnet/DesktopAgent/test/MorganStanley.ComposeUI.DesktopAgent.Tests/EndToEndTests.cs

+1-1
Original file line numberDiff line numberDiff line change
@@ -1918,7 +1918,7 @@ private MessageBuffer GetContext()
19181918
{
19191919
return MessageBuffer.Factory.CreateJson(
19201920
new Contact(
1921-
new ContactID {Email = $"test{_counter}@test.org", FDS_ID = $"test{_counter++}"},
1921+
new ContactID {Email = $"test{_counter}@test.org", FdsId = $"test{_counter++}"},
19221922
name: "Testy Tester"), _options);
19231923
}
19241924
}

0 commit comments

Comments
 (0)