Skip to content

Commit 5e5846d

Browse files
authored
[develop2] Fix MesonToolchain wrong cppstd in apple-clang (#13172)
1 parent 50ed1a7 commit 5e5846d

1 file changed

Lines changed: 2 additions & 1 deletion

File tree

conans/test/unittests/model/version/test_version_range.py

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -52,7 +52,8 @@ def test_range(version_range, conditions, versions_in, versions_out):
5252
for v in versions_out:
5353
assert Version(v) not in r
5454

55+
5556
def test_wrong_range_syntax():
5657
# https://github.com/conan-io/conan/issues/12692
57-
with pytest.raises(ConanException) as e:
58+
with pytest.raises(ConanException):
5859
VersionRange(">= 1.0")

0 commit comments

Comments
 (0)