diff options
| author | Sean Hall <r.sean.hall@gmail.com> | 2020-04-02 18:38:55 +1000 |
|---|---|---|
| committer | Sean Hall <r.sean.hall@gmail.com> | 2020-04-02 21:34:24 +1000 |
| commit | 302b501f9ed2ae840ce598b30792d0fc1b538572 (patch) | |
| tree | c476955f346c34e0c22c5712d4a1ec9f75499528 /src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs | |
| parent | bf435c69fd70f5140eddd99fe02d3dcdae75473a (diff) | |
| download | wix-302b501f9ed2ae840ce598b30792d0fc1b538572.tar.gz wix-302b501f9ed2ae840ce598b30792d0fc1b538572.tar.bz2 wix-302b501f9ed2ae840ce598b30792d0fc1b538572.zip | |
Fix bug in ParseHelper where it assumed the first column was the id column.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs b/src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs index 4bc5b535..b75e8ad9 100644 --- a/src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/ExtensionFixture.cs | |||
| @@ -63,7 +63,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 63 | Assert.Equal(@"example.txt", fileTuple[FileTupleFields.Source].PreviousValue.AsPath().Path); | 63 | Assert.Equal(@"example.txt", fileTuple[FileTupleFields.Source].PreviousValue.AsPath().Path); |
| 64 | 64 | ||
| 65 | var example = section.Tuples.Where(t => t.Definition.Type == TupleDefinitionType.MustBeFromAnExtension).Single(); | 65 | var example = section.Tuples.Where(t => t.Definition.Type == TupleDefinitionType.MustBeFromAnExtension).Single(); |
| 66 | Assert.Equal("Foo", example.Id.Id); | 66 | Assert.Null(example.Id?.Id); |
| 67 | Assert.Equal("Foo", example[0].AsString()); | 67 | Assert.Equal("Foo", example[0].AsString()); |
| 68 | Assert.Equal("Bar", example[1].AsString()); | 68 | Assert.Equal("Bar", example[1].AsString()); |
| 69 | } | 69 | } |
