summaryrefslogtreecommitdiff
path: root/test/audio_mapping_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2020-09-29 20:55:16 +0200
committerCarl Hetherington <cth@carlh.net>2020-10-12 17:33:27 +0200
commitb29eb5107c5e77fe01e43010e1582e733f6ceea1 (patch)
tree3656e3c7774b39735c34ebb059697deccfb3b280 /test/audio_mapping_test.cc
parentcd92063f7c67093ac789cb3aa78e534a3a85ef92 (diff)
Fix incorrect sign on boost test constants.
Diffstat (limited to 'test/audio_mapping_test.cc')
-rw-r--r--test/audio_mapping_test.cc2
1 files changed, 1 insertions, 1 deletions
diff --git a/test/audio_mapping_test.cc b/test/audio_mapping_test.cc
index 0565429fb..0acc922b6 100644
--- a/test/audio_mapping_test.cc
+++ b/test/audio_mapping_test.cc
@@ -48,7 +48,7 @@ BOOST_AUTO_TEST_CASE (audio_mapping_test)
}
list<int> mapped = four.mapped_output_channels ();
- BOOST_CHECK_EQUAL (mapped.size(), 1);
+ BOOST_CHECK_EQUAL (mapped.size(), 1U);
BOOST_CHECK_EQUAL (mapped.front(), 1);
four.make_zero ();