summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorRobert Stepanek <rsto@fastmailteam.com>2022-10-25 14:49:34 +0200
committerAllen Winter <allen.winter@kdab.com>2022-10-25 14:41:43 -0400
commit02a54aa6f926836fe88a0a4a769116960082f410 (patch)
treead6dab1e0e352f7c8c9395d41b425760a0269ac7
parentfbb64fb96c413ea063b77dcecd3f4c95f2a57883 (diff)
downloadlibical-git-02a54aa6f926836fe88a0a4a769116960082f410.tar.gz
Fix regression test function name mix-up
This got introduced in 453689b7678cbc588c2811efb953d513fc8dc90f, where the "test_remove_tzid_from_due" and "test_comma_in_xproperty" function names were swapped.
-rw-r--r--src/test/regression.c4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/test/regression.c b/src/test/regression.c
index 4b86b406..1e5a0acb 100644
--- a/src/test/regression.c
+++ b/src/test/regression.c
@@ -4919,7 +4919,7 @@ test_icalvalue_resets_timezone_on_set(void)
icalerror_clear_errno();
}
-static void test_remove_tzid_from_due(void)
+static void test_comma_in_xproperty(void)
{
icalproperty *xproperty = icalproperty_new_from_string("X-TEST-PROPERTY:test,test");
icalcomponent *c;
@@ -4937,7 +4937,7 @@ static void test_remove_tzid_from_due(void)
icalcomponent_free(c);
}
-static void test_comma_in_xproperty(void)
+static void test_remove_tzid_from_due(void)
{
icalproperty *due = icalproperty_vanew_due(icaltime_from_string("20220120T120000"), (void *)0);
icalcomponent *c;