Index: test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingSoilProfileCollectionNodePresenterTest.cs =================================================================== diff -u -r4959b3b9b84eec4cb80ec43c037579d9177b3d02 -rb41818a4114af504fab324ff62a4b303fd082b08 --- test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingSoilProfileCollectionNodePresenterTest.cs (.../PipingSoilProfileCollectionNodePresenterTest.cs) (revision 4959b3b9b84eec4cb80ec43c037579d9177b3d02) +++ test/Plugins/Wti/Wti.Forms.Test/NodePresenters/PipingSoilProfileCollectionNodePresenterTest.cs (.../PipingSoilProfileCollectionNodePresenterTest.cs) (revision b41818a4114af504fab324ff62a4b303fd082b08) @@ -38,10 +38,10 @@ var nodePresenter = new PipingSoilProfileCollectionNodePresenter(); - IEnumerable surfaceLinesCollection = Enumerable.Empty(); + IEnumerable soilProfileCollection = Enumerable.Empty(); // Call - nodePresenter.UpdateNode(null, soilProfileCollectionNodeStub, surfaceLinesCollection); + nodePresenter.UpdateNode(null, soilProfileCollectionNodeStub, soilProfileCollection); // Assert Assert.AreEqual(WtiFormsResources.PipingSoilProfilesCollectionName, soilProfileCollectionNodeStub.Text); @@ -60,10 +60,10 @@ var nodePresenter = new PipingSoilProfileCollectionNodePresenter(); - IEnumerable surfaceLinesCollection = new object[0]; + IEnumerable soilProfilesCollection = new object[0]; // Call - var children = nodePresenter.GetChildNodeObjects(surfaceLinesCollection, nodeMock); + var children = nodePresenter.GetChildNodeObjects(soilProfilesCollection, nodeMock); // Assert CollectionAssert.IsEmpty(children);