Skip to content

Commit

Permalink
test/generation: fix wrong output path
Browse files Browse the repository at this point in the history
  • Loading branch information
mochaaP committed Feb 2, 2025
1 parent af25c25 commit 7583e2c
Showing 1 changed file with 3 additions and 3 deletions.
6 changes: 3 additions & 3 deletions tests/test_generation/ma_test_generation_noise.c
Original file line number Diff line number Diff line change
Expand Up @@ -65,17 +65,17 @@ ma_result test_noise__s16()
ma_result result;
ma_bool32 hasError = MA_FALSE;

result = test_noise__by_format_and_type(ma_format_s16, ma_noise_type_white, TEST_OUTPUT_DIR"/output/noise_s16_white.wav");
result = test_noise__by_format_and_type(ma_format_s16, ma_noise_type_white, TEST_OUTPUT_DIR"/noise_s16_white.wav");
if (result != MA_SUCCESS) {
hasError = MA_TRUE;
}

result = test_noise__by_format_and_type(ma_format_s16, ma_noise_type_pink, TEST_OUTPUT_DIR"/output/noise_s16_pink.wav");
result = test_noise__by_format_and_type(ma_format_s16, ma_noise_type_pink, TEST_OUTPUT_DIR"/noise_s16_pink.wav");
if (result != MA_SUCCESS) {
hasError = MA_TRUE;
}

result = test_noise__by_format_and_type(ma_format_s16, ma_noise_type_brownian, TEST_OUTPUT_DIR"/output/noise_s16_brownian.wav");
result = test_noise__by_format_and_type(ma_format_s16, ma_noise_type_brownian, TEST_OUTPUT_DIR"/noise_s16_brownian.wav");
if (result != MA_SUCCESS) {
hasError = MA_TRUE;
}
Expand Down

0 comments on commit 7583e2c

Please sign in to comment.