From b36433623fcac28cf620868430d49bc36fca2963 Mon Sep 17 00:00:00 2001 From: Rob Mensching Date: Wed, 22 May 2019 14:45:33 -0700 Subject: Use "Ref" instead of "_" as the reference convention --- src/test/WixToolsetTest.Data/SerializeFixture.cs | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) (limited to 'src/test/WixToolsetTest.Data/SerializeFixture.cs') diff --git a/src/test/WixToolsetTest.Data/SerializeFixture.cs b/src/test/WixToolsetTest.Data/SerializeFixture.cs index 335151cd..527359fe 100644 --- a/src/test/WixToolsetTest.Data/SerializeFixture.cs +++ b/src/test/WixToolsetTest.Data/SerializeFixture.cs @@ -22,7 +22,7 @@ namespace WixToolsetTest.Data section.Tuples.Add(new ComponentTuple(sln, new Identifier(AccessModifier.Public, "TestComponent")) { ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"), - Directory_ = "TestFolder", + DirectoryRef = "TestFolder", Location = ComponentLocation.Either, }); @@ -37,7 +37,7 @@ namespace WixToolsetTest.Data Assert.Equal("TestComponent", tuple.Id.Id); Assert.Equal(AccessModifier.Public, tuple.Id.Access); - Assert.Equal("TestFolder", tuple.Directory_); + Assert.Equal("TestFolder", tuple.DirectoryRef); Assert.Equal(ComponentLocation.Either, tuple.Location); } @@ -192,7 +192,7 @@ namespace WixToolsetTest.Data section.Tuples.Add(new ComponentTuple(sln, new Identifier(AccessModifier.Public, "TestComponent")) { ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"), - Directory_ = "TestFolder", + DirectoryRef = "TestFolder", Location = ComponentLocation.Either, }); -- cgit v1.2.3-55-g6feb