diff options
Diffstat (limited to '')
-rw-r--r-- | src/test/WixToolsetTest.Data/SerializeFixture.cs | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.Data/SerializeFixture.cs b/src/test/WixToolsetTest.Data/SerializeFixture.cs index 856bcda7..335151cd 100644 --- a/src/test/WixToolsetTest.Data/SerializeFixture.cs +++ b/src/test/WixToolsetTest.Data/SerializeFixture.cs | |||
@@ -19,7 +19,7 @@ namespace WixToolsetTest.Data | |||
19 | 19 | ||
20 | var section = new IntermediateSection("test", SectionType.Product, 65001); | 20 | var section = new IntermediateSection("test", SectionType.Product, 65001); |
21 | 21 | ||
22 | section.Tuples.Add(new ComponentTuple(sln, new Identifier("TestComponent", AccessModifier.Public)) | 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 | Directory_ = "TestFolder", |
@@ -189,7 +189,7 @@ namespace WixToolsetTest.Data | |||
189 | 189 | ||
190 | var section = new IntermediateSection("test", SectionType.Product, 65001); | 190 | var section = new IntermediateSection("test", SectionType.Product, 65001); |
191 | 191 | ||
192 | section.Tuples.Add(new ComponentTuple(sln, new Identifier("TestComponent", AccessModifier.Public)) | 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 | Directory_ = "TestFolder", |