diff options
| author | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-10-18 08:58:32 +0200 |
|---|---|---|
| committer | Aldrik Ramaekers <aldrikboy@gmail.com> | 2025-10-18 08:58:32 +0200 |
| commit | 0dc33a4dd49eb560e98b24090969fd618a4c6198 (patch) | |
| tree | 77e7070bcbbcc9db4e0c5552ae83a33d3b2f9cfc /tests | |
| parent | c1d950f2765cde614c8411b4effb3850146ba598 (diff) | |
refactor memops
Diffstat (limited to 'tests')
| -rw-r--r-- | tests/nl_tax_tests.cpp | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/tests/nl_tax_tests.cpp b/tests/nl_tax_tests.cpp index 31382ed..20d70c8 100644 --- a/tests/nl_tax_tests.cpp +++ b/tests/nl_tax_tests.cpp @@ -50,7 +50,7 @@ TEST _nl_tax_1b(void) PASS(); } -TEST _nl_tax_1d(void) +TEST _nl_tax_1c(void) { administration::create_default(test_file_path); administration::company_info_set(_create_nl_business()); @@ -71,7 +71,7 @@ TEST _nl_tax_1d(void) administration::create_tax_statement(&statement); ASSERT_EQ(statement.report_count, 1); - tax_line* tl = administration::get_tax_line_from_report(&statement.reports[0], "1d"); + tax_line* tl = administration::get_tax_line_from_report(&statement.reports[0], "1c"); ASSERT_EQ(tl->total_net, 45.0f); ASSERT_EQ(tl->total_tax, 45.0f * 0.05f); @@ -143,7 +143,7 @@ TEST _nl_tax_2currency(void) SUITE(nl_tax_statement) { RUN_TEST(_nl_tax_1a); RUN_TEST(_nl_tax_1b); - RUN_TEST(_nl_tax_1d); + RUN_TEST(_nl_tax_1c); RUN_TEST(_nl_tax_1e); RUN_TEST(_nl_tax_2currency); }
\ No newline at end of file |
