Skip to content

Commit 4a16d15

Browse files
fix typo
1 parent 804e692 commit 4a16d15

File tree

4 files changed

+10
-10
lines changed

4 files changed

+10
-10
lines changed

code/logic/fossil/unittest/framework.h

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -504,7 +504,7 @@ void _fossil_test_assert_class(bool expression, xassert_type_t behavior, char* m
504504
*
505505
* @param name The name of the test case.
506506
*/
507-
#define FOSSIL_SONIREO(name) _FOSSIL_TEST(name)
507+
#define FOSSIL_SONERO(name) _FOSSIL_TEST(name)
508508

509509
// =================================================================
510510
// Test pool commands

code/tests/meson.build

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@ if get_option('with_test').enabled()
33

44
test_src = ['unit_runner.c']
55
test_cubes = [
6-
'mocks', 'marks', 'xfixture', 'xsonireo', 'bdd', 'tdd', 'tags',
6+
'mocks', 'marks', 'xfixture', 'xsoneros', 'bdd', 'tdd', 'tags',
77
]
88

99
foreach cube : test_cubes

code/tests/test_bdd.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -31,7 +31,7 @@
3131
// as samples for library usage.
3232
// * * * * * * * * * * * * * * * * * * * * * * * *
3333

34-
FOSSIL_SONIREO(xbdd_logic_test) {
34+
FOSSIL_SONERO(xbdd_logic_test) {
3535
GIVEN("a valid statement is passed") {
3636
// Set up the context
3737
bool givenExecuted = true;
@@ -52,7 +52,7 @@ FOSSIL_SONIREO(xbdd_logic_test) {
5252
}
5353
} // end of case
5454

55-
FOSSIL_SONIREO(xbdd_user_account) {
55+
FOSSIL_SONERO(xbdd_user_account) {
5656
GIVEN("a user's account with sufficient balance") {
5757
// Set up the context
5858
float accountBalance = 500.0;
@@ -74,7 +74,7 @@ FOSSIL_SONIREO(xbdd_user_account) {
7474
}
7575
} // end of case
7676

77-
FOSSIL_SONIREO(xbdd_empty_cart) {
77+
FOSSIL_SONERO(xbdd_empty_cart) {
7878
GIVEN("a user with an empty shopping cart") {
7979
// Set up the context
8080
int cartItemCount = 0;
@@ -92,7 +92,7 @@ FOSSIL_SONIREO(xbdd_empty_cart) {
9292
}
9393
} // end of case
9494

95-
FOSSIL_SONIREO(xbdd_valid_login) {
95+
FOSSIL_SONERO(xbdd_valid_login) {
9696
GIVEN("a registered user with valid credentials") {
9797
// Set up the context
9898
const char* validUsername = "user123";

code/tests/test_xsonireo.c renamed to code/tests/test_xsoneros.c

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -46,7 +46,7 @@ FOSSIL_TEARDOWN(sample_feature) {
4646
// as samples for library usage.
4747
// * * * * * * * * * * * * * * * * * * * * * * * *
4848

49-
FOSSIL_SONIREO(xbdd_logic_within_feature_test) {
49+
FOSSIL_SONERO(xbdd_logic_within_feature_test) {
5050
GIVEN("a valid statement is passed") {
5151
// Set up the context
5252
bool givenExecuted = true;
@@ -67,7 +67,7 @@ FOSSIL_SONIREO(xbdd_logic_within_feature_test) {
6767
}
6868
} // end of case
6969

70-
FOSSIL_SONIREO(xbdd_user_account_within_feature) {
70+
FOSSIL_SONERO(xbdd_user_account_within_feature) {
7171
GIVEN("a user's account with sufficient balance") {
7272
// Set up the context
7373
float accountBalance = 500.0;
@@ -89,7 +89,7 @@ FOSSIL_SONIREO(xbdd_user_account_within_feature) {
8989
}
9090
} // end of case
9191

92-
FOSSIL_SONIREO(xbdd_empty_cart_within_feature) {
92+
FOSSIL_SONERO(xbdd_empty_cart_within_feature) {
9393
GIVEN("a user with an empty shopping cart") {
9494
// Set up the context
9595
int cartItemCount = 0;
@@ -107,7 +107,7 @@ FOSSIL_SONIREO(xbdd_empty_cart_within_feature) {
107107
}
108108
} // end of case
109109

110-
FOSSIL_SONIREO(xbdd_valid_login_within_feature) {
110+
FOSSIL_SONERO(xbdd_valid_login_within_feature) {
111111
GIVEN("a registered user with valid credentials") {
112112
// Set up the context
113113
const char* validUsername = "user123";

0 commit comments

Comments
 (0)