diff options
author | Rob Mensching <rob@firegiant.com> | 2019-10-07 14:41:09 -0700 |
---|---|---|
committer | Rob Mensching <rob@firegiant.com> | 2019-10-07 21:44:46 -0700 |
commit | 59a8dadcee33343dd724e4e048f0a471f314452f (patch) | |
tree | 552ad507bb75cd644217408a1b8cf518427476cb /src/test | |
parent | 3a2c3c799eead15c26f5d65d16e6e01b4a0e8c64 (diff) | |
download | wix-59a8dadcee33343dd724e4e048f0a471f314452f.tar.gz wix-59a8dadcee33343dd724e4e048f0a471f314452f.tar.bz2 wix-59a8dadcee33343dd724e4e048f0a471f314452f.zip |
Write Font table correctly
Diffstat (limited to 'src/test')
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | 2 | ||||
-rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/TestData/Font/FontTitle.wxs | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs index c391abac..1ab51714 100644 --- a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | |||
@@ -294,7 +294,7 @@ namespace WixToolsetTest.CoreIntegration | |||
294 | } | 294 | } |
295 | } | 295 | } |
296 | 296 | ||
297 | [Fact(Skip = "Test demonstrates failure")] | 297 | [Fact] |
298 | public void PopulatesFontTable() | 298 | public void PopulatesFontTable() |
299 | { | 299 | { |
300 | var folder = TestData.Get(@"TestData"); | 300 | var folder = TestData.Get(@"TestData"); |
diff --git a/src/test/WixToolsetTest.CoreIntegration/TestData/Font/FontTitle.wxs b/src/test/WixToolsetTest.CoreIntegration/TestData/Font/FontTitle.wxs index b7899b87..6fb9ef05 100644 --- a/src/test/WixToolsetTest.CoreIntegration/TestData/Font/FontTitle.wxs +++ b/src/test/WixToolsetTest.CoreIntegration/TestData/Font/FontTitle.wxs | |||
@@ -3,7 +3,7 @@ | |||
3 | <Fragment> | 3 | <Fragment> |
4 | <ComponentGroup Id="ProductComponents"> | 4 | <ComponentGroup Id="ProductComponents"> |
5 | <Component Id="FontComp" Directory="INSTALLFOLDER"> | 5 | <Component Id="FontComp" Directory="INSTALLFOLDER"> |
6 | <File Source="test.txt" FontTitle="FakeFont" /> | 6 | <File Id="test.txt" Source="test.txt" FontTitle="FakeFont" /> |
7 | </Component> | 7 | </Component> |
8 | </ComponentGroup> | 8 | </ComponentGroup> |
9 | </Fragment> | 9 | </Fragment> |