aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.Data/SerializeFixture.cs
diff options
context:
space:
mode:
authorRob Mensching <rob@firegiant.com>2019-05-22 14:45:33 -0700
committerRob Mensching <rob@firegiant.com>2019-05-23 15:43:40 -0700
commitb36433623fcac28cf620868430d49bc36fca2963 (patch)
tree08f26c45c3d80ce665eade49ee7b542bf71da81c /src/test/WixToolsetTest.Data/SerializeFixture.cs
parent109ee5a02f9cec4775697b43655674fc70f4127a (diff)
downloadwix-b36433623fcac28cf620868430d49bc36fca2963.tar.gz
wix-b36433623fcac28cf620868430d49bc36fca2963.tar.bz2
wix-b36433623fcac28cf620868430d49bc36fca2963.zip
Use "Ref" instead of "_" as the reference convention
Diffstat (limited to 'src/test/WixToolsetTest.Data/SerializeFixture.cs')
-rw-r--r--src/test/WixToolsetTest.Data/SerializeFixture.cs6
1 files changed, 3 insertions, 3 deletions
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
22 section.Tuples.Add(new ComponentTuple(sln, new Identifier(AccessModifier.Public, "TestComponent")) 22 section.Tuples.Add(new ComponentTuple(sln, new Identifier(AccessModifier.Public, "TestComponent"))
23 { 23 {
24 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"), 24 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"),
25 Directory_ = "TestFolder", 25 DirectoryRef = "TestFolder",
26 Location = ComponentLocation.Either, 26 Location = ComponentLocation.Either,
27 }); 27 });
28 28
@@ -37,7 +37,7 @@ namespace WixToolsetTest.Data
37 37
38 Assert.Equal("TestComponent", tuple.Id.Id); 38 Assert.Equal("TestComponent", tuple.Id.Id);
39 Assert.Equal(AccessModifier.Public, tuple.Id.Access); 39 Assert.Equal(AccessModifier.Public, tuple.Id.Access);
40 Assert.Equal("TestFolder", tuple.Directory_); 40 Assert.Equal("TestFolder", tuple.DirectoryRef);
41 Assert.Equal(ComponentLocation.Either, tuple.Location); 41 Assert.Equal(ComponentLocation.Either, tuple.Location);
42 } 42 }
43 43
@@ -192,7 +192,7 @@ namespace WixToolsetTest.Data
192 section.Tuples.Add(new ComponentTuple(sln, new Identifier(AccessModifier.Public, "TestComponent")) 192 section.Tuples.Add(new ComponentTuple(sln, new Identifier(AccessModifier.Public, "TestComponent"))
193 { 193 {
194 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"), 194 ComponentId = new Guid(1, 0, 0, new byte[8]).ToString("B"),
195 Directory_ = "TestFolder", 195 DirectoryRef = "TestFolder",
196 Location = ComponentLocation.Either, 196 Location = ComponentLocation.Either,
197 }); 197 });
198 198