Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Feature/fix test py34 order #3389

Merged
merged 8 commits into from
Aug 23, 2018
6 changes: 4 additions & 2 deletions conans/test/build_helpers/msbuild_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -116,8 +116,10 @@ def custom_properties_test(self):
"arch": "x86_64"})
conanfile = MockConanfile(settings)
msbuild = MSBuild(conanfile)
command = msbuild.get_command("project_file.sln", properties={"MyProp1": "MyValue1", "MyProp2": "MyValue2"})
self.assertIn(' /p:MyProp1="MyValue1" /p:MyProp2="MyValue2"', command)
command = msbuild.get_command("project_file.sln", properties={"MyProp1": "MyValue1",
"MyProp2": "MyValue2"})
self.assertIn('/p:MyProp1="MyValue1"', command)
self.assertIn('/p:MyProp2="MyValue2"', command)

@unittest.skipUnless(platform.system() == "Windows", "Requires MSBuild")
def reuse_msbuild_object_test(self):
Expand Down