summaryrefslogtreecommitdiff
path: root/test/resampler_test.cc
diff options
context:
space:
mode:
authorCarl Hetherington <cth@carlh.net>2015-06-21 01:15:32 +0100
committerCarl Hetherington <cth@carlh.net>2015-06-21 01:15:32 +0100
commite60bb3e51bd1508b149e6b8f6608f09b5196ae26 (patch)
treea7a5b937c9ae138d4eebca8d5130d308bf9ae420 /test/resampler_test.cc
parentf07d5125a7b609320682689abe40781f096ca25e (diff)
No-op: remove all trailing whitespace.
Diffstat (limited to 'test/resampler_test.cc')
-rw-r--r--test/resampler_test.cc6
1 files changed, 3 insertions, 3 deletions
diff --git a/test/resampler_test.cc b/test/resampler_test.cc
index 0fc05685b..d633f75c1 100644
--- a/test/resampler_test.cc
+++ b/test/resampler_test.cc
@@ -37,15 +37,15 @@ resampler_test_one (int from, int to)
/* 3 hours */
int64_t const N = int64_t (from) * 60 * 60 * 3;
-
+
/* XXX: no longer checks anything */
for (int64_t i = 0; i < N; i += 1000) {
shared_ptr<AudioBuffers> a (new AudioBuffers (1, 1000));
a->make_silent ();
shared_ptr<const AudioBuffers> r = resamp.run (a);
}
-}
-
+}
+
BOOST_AUTO_TEST_CASE (resampler_test)
{
resampler_test_one (44100, 48000);