Fix some typos so that the correct tests are run

- test_gnc_txn_to_float_txn_cut_semantics
- test_dbi_business_store_and_reload
This commit is contained in:
Richard Cohen 2022-11-27 21:14:10 +00:00 committed by Richard Cohen
parent 17820ec261
commit 846e75146a
2 changed files with 2 additions and 2 deletions

View File

@ -600,7 +600,7 @@ test_suite_split_register_copy_ops (void)
GNC_TEST_ADD (suitename, "gnc split to float split", Fixture, NULL, setup, test_gnc_split_to_float_split, teardown);
GNC_TEST_ADD (suitename, "gnc float split to split", Fixture, NULL, setup, test_gnc_float_split_to_split, teardown);
GNC_TEST_ADD (suitename, "gnc float txn to float txn", Fixture, NULL, setup, test_gnc_txn_to_float_txn, teardown);
GNC_TEST_ADD (suitename, "gnc float txn to float txn cut semantics", Fixture, NULL, setup, test_gnc_txn_to_float_txn, teardown);
GNC_TEST_ADD (suitename, "gnc float txn to float txn cut semantics", Fixture, NULL, setup, test_gnc_txn_to_float_txn_cut_semantics, teardown);
GNC_TEST_ADD (suitename, "gnc float txn get float split", FlFixture, NULL, flsetup, test_gnc_float_txn_get_float_split, flteardown);
GNC_TEST_ADD (suitename, "gnc float txn get other float split", FlFixture, NULL, flsetup, test_gnc_float_txn_get_other_float_split, flteardown);

View File

@ -643,7 +643,7 @@ create_dbi_test_suite (const char* dbm_name, const char* url)
GNC_TEST_ADD (subsuite, "version_control", Fixture, url, setup_memory,
test_dbi_version_control, teardown);
GNC_TEST_ADD (subsuite, "business_store_and_reload", Fixture, url,
setup_business, test_dbi_version_control, teardown);
setup_business, test_dbi_business_store_and_reload, teardown);
g_free (subsuite);
}