Skip to content

Commit 6a99c83

Browse files
authored
Update work item count in source from 10 to 11 (#1752)
1 parent 3351d3f commit 6a99c83

File tree

2 files changed

+11
-11
lines changed

2 files changed

+11
-11
lines changed

docs/Reference/Generated/MigrationTools.Host.xml

Lines changed: 9 additions & 9 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

src/MigrationTools.Clients.AzureDevops.ObjectModel.Tests/Endpoints/TfsWorkItemEndPointTests.cs

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -42,7 +42,7 @@ public void TfsWorkItemEndPointGetWorkItemsTest()
4242
var endpoint = Services.GetRequiredService<TfsWorkItemEndpoint>();
4343
endpoint.Configure(GetTfsWorkItemEndPointOptions("migrationSource1"));
4444
IEnumerable<WorkItemData> result = endpoint.GetWorkItems();
45-
Assert.AreEqual(10, result.Count());
45+
Assert.AreEqual(11, result.Count());
4646
}
4747

4848
[TestMethod(), TestCategory("L3"), TestCategory("AzureDevOps.ObjectModel")]
@@ -56,7 +56,7 @@ public void TfsWorkItemEndPointGetWorkItemsQueryTest()
5656
Parameters = new Dictionary<string, string>() { { "TeamProject", "migrationSource1" } }
5757
};
5858
IEnumerable<WorkItemData> result = endpoint.GetWorkItems(qo);
59-
Assert.AreEqual(10, result.Count());
59+
Assert.AreEqual(11, result.Count());
6060
}
6161

6262
private static TfsWorkItemEndpointOptions GetTfsWorkItemEndPointOptions(string project)

0 commit comments

Comments
 (0)