diff options
author | dvdli <dvdli@google.com> | 2020-12-01 14:10:34 +0800 |
---|---|---|
committer | dvdli <dvdli@google.com> | 2020-12-01 14:10:34 +0800 |
commit | ee672bb4b3919ba8e411ca5bba95e22b288f2831 (patch) | |
tree | 54d62028c60b04cf44f2d748c8b56a558da7e2d8 /tests | |
parent | b59e5e1b11a4cb3919ac0c7d1fffb4e7452424e0 (diff) |
add instructions to run tests and fix typo
Diffstat (limited to 'tests')
-rw-r--r-- | tests/include/pcm_test_device.h | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/include/pcm_test_device.h b/tests/include/pcm_test_device.h index f6e7807..2df7c93 100644 --- a/tests/include/pcm_test_device.h +++ b/tests/include/pcm_test_device.h @@ -36,8 +36,8 @@ namespace testing { #define TEST_LOOPBACK_CARD 2 #endif -#ifndef TEST_LOOPBACK_PALYBACK_DEVICE -#define TEST_LOOPBACK_PALYBACK_DEVICE 0 +#ifndef TEST_LOOPBACK_PLAYBACK_DEVICE +#define TEST_LOOPBACK_PLAYBACK_DEVICE 0 #endif #ifndef TEST_LOOPBACK_CAPTURE_DEVICE @@ -45,7 +45,7 @@ namespace testing { #endif constexpr unsigned int kLoopbackCard = TEST_LOOPBACK_CARD; -constexpr unsigned int kLoopbackPlaybackDevice = TEST_LOOPBACK_PALYBACK_DEVICE; +constexpr unsigned int kLoopbackPlaybackDevice = TEST_LOOPBACK_PLAYBACK_DEVICE; constexpr unsigned int kLoopbackCaptureDevice = TEST_LOOPBACK_CAPTURE_DEVICE; } // namespace testing |