X-Git-Url: https://git.carlh.net/gitweb/?a=blobdiff_plain;f=test%2Fimage_proxy_test.cc;h=210f32d408eddb17239e37bef9dc311645a8c555;hb=fdb36750a09e3bba3d10fe5102e39a62eda68ea6;hp=a9872b958047c30f162f7f414e8dd836530d655d;hpb=689fa55d1529ad88449ca464e9107c4dcc54d1cb;p=dcpomatic.git diff --git a/test/image_proxy_test.cc b/test/image_proxy_test.cc index a9872b958..210f32d40 100644 --- a/test/image_proxy_test.cc +++ b/test/image_proxy_test.cc @@ -54,14 +54,14 @@ BOOST_AUTO_TEST_CASE (j2k_image_proxy_same_test) BOOST_AUTO_TEST_CASE (ffmpeg_image_proxy_same_test) { { - auto proxy1 = make_shared(data_file0, VideoRange::FULL); - auto proxy2 = make_shared(data_file0, VideoRange::FULL); + auto proxy1 = make_shared(data_file0); + auto proxy2 = make_shared(data_file0); BOOST_CHECK (proxy1->same(proxy2)); } { - auto proxy1 = make_shared(data_file0, VideoRange::FULL); - auto proxy2 = make_shared(data_file1, VideoRange::FULL); + auto proxy1 = make_shared(data_file0); + auto proxy2 = make_shared(data_file1); BOOST_CHECK (!proxy1->same(proxy2)); } }