Skip to content

Commit

Permalink
tests: fix libwmf version
Browse files Browse the repository at this point in the history
The current latest version is 0.2.8, but the test expects 3.0. 0.2.8 was
released in 2011, so it seems quite safe to require the latest version.
  • Loading branch information
dcbaker committed Nov 8, 2017
1 parent 1501735 commit 6ec4109
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion test cases/frameworks/21 libwmf/meson.build
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
project('libwmf test', 'c')

libwmf_dep = dependency('libwmf', version : '>=3.0')
libwmf_dep = dependency('libwmf', version : '>= 0.2.8')
libwmf_ver = libwmf_dep.version()
assert(libwmf_ver.split('.').length() > 1, 'libwmf version is "@0@"'.format(libwmf_ver))
message('libwmf version is "@0@"'.format(libwmf_ver))
Expand Down

0 comments on commit 6ec4109

Please sign in to comment.