aboutsummaryrefslogtreecommitdiff
path: root/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
diff options
context:
space:
mode:
authorSean Hall <r.sean.hall@gmail.com>2019-02-15 22:05:39 -0600
committerSean Hall <r.sean.hall@gmail.com>2019-02-15 22:11:09 -0600
commitf1b3a32900dbb7d7f7f4db3d1aedcf63db5ede58 (patch)
tree4dab8394ee42de399f52a5f53ef777d6d59b7dea /src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
parent1144983d580524f1e22e0ddd2416955cda8063d2 (diff)
downloadwix-f1b3a32900dbb7d7f7f4db3d1aedcf63db5ede58.tar.gz
wix-f1b3a32900dbb7d7f7f4db3d1aedcf63db5ede58.tar.bz2
wix-f1b3a32900dbb7d7f7f4db3d1aedcf63db5ede58.zip
WIXFEAT:3815 - Update mbahost test for updates to BaseBootstrapperApplicationFactory and BootstrapperApplication.
Diffstat (limited to 'src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h')
-rw-r--r--src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h b/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
index 9d44075b..0f30ff2d 100644
--- a/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
+++ b/src/test/WixToolsetTest.MbaHost/TestManagedBootstrapperApplicationFactory.h
@@ -13,9 +13,9 @@ namespace Native
13 public ref class TestManagedBootstrapperApplicationFactory : public BaseBootstrapperApplicationFactory 13 public ref class TestManagedBootstrapperApplicationFactory : public BaseBootstrapperApplicationFactory
14 { 14 {
15 protected: 15 protected:
16 virtual IBootstrapperApplication^ Create(Engine^ engine, Command% command) override 16 virtual IBootstrapperApplication^ Create(IEngine^ engine, IBootstrapperCommand^ /*command*/) override
17 { 17 {
18 return gcnew TestManagedBootstrapperApplication(engine, command); 18 return gcnew TestManagedBootstrapperApplication(engine);
19 } 19 }
20 }; 20 };
21 21