diff options
| author | Bob Arnson <bob@firegiant.com> | 2020-01-21 19:12:53 -0500 |
|---|---|---|
| committer | Bob Arnson <bob@firegiant.com> | 2020-01-21 19:21:06 -0500 |
| commit | c2bc01b47cca2a70ddeb2cc9e9b2e3b9906bb647 (patch) | |
| tree | 3008926e61606108768fa7df0e67d7ca5be11fb1 /src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | |
| parent | 772ed422f3195c899246f16c9c2e5b5a839d06cd (diff) | |
| download | wix-c2bc01b47cca2a70ddeb2cc9e9b2e3b9906bb647.tar.gz wix-c2bc01b47cca2a70ddeb2cc9e9b2e3b9906bb647.tar.bz2 wix-c2bc01b47cca2a70ddeb2cc9e9b2e3b9906bb647.zip | |
Fix ServiceControl/@Wait translation.
Diffstat (limited to 'src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs')
| -rw-r--r-- | src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs index 200ba7b8..18380417 100644 --- a/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs +++ b/src/test/WixToolsetTest.CoreIntegration/MsiQueryFixture.cs | |||
| @@ -817,7 +817,7 @@ namespace WixToolsetTest.CoreIntegration | |||
| 817 | } | 817 | } |
| 818 | 818 | ||
| 819 | [Fact] | 819 | [Fact] |
| 820 | public void PopulatesServiceInstallTable() | 820 | public void PopulatesServiceTables() |
| 821 | { | 821 | { |
| 822 | var folder = TestData.Get(@"TestData"); | 822 | var folder = TestData.Get(@"TestData"); |
| 823 | 823 | ||
| @@ -841,9 +841,10 @@ namespace WixToolsetTest.CoreIntegration | |||
| 841 | result.AssertSuccess(); | 841 | result.AssertSuccess(); |
| 842 | 842 | ||
| 843 | Assert.True(File.Exists(msiPath)); | 843 | Assert.True(File.Exists(msiPath)); |
| 844 | var results = Query.QueryDatabase(msiPath, new[] { "ServiceInstall" }); | 844 | var results = Query.QueryDatabase(msiPath, new[] { "ServiceInstall", "ServiceControl" }); |
| 845 | Assert.Equal(new[] | 845 | Assert.Equal(new[] |
| 846 | { | 846 | { |
| 847 | "ServiceControl:SampleService\tSampleService\t161\t\t1\ttest.txt", | ||
| 847 | "ServiceInstall:SampleService\tSampleService\t\t16\t4\t0\t\t\t\t\t\ttest.txt\t", | 848 | "ServiceInstall:SampleService\tSampleService\t\t16\t4\t0\t\t\t\t\t\ttest.txt\t", |
| 848 | }, results); | 849 | }, results); |
| 849 | } | 850 | } |
