This is an automated email from the ASF dual-hosted git repository.

rbulter pushed a commit to branch feature/refactor_tcp_receive_function
in repository https://gitbox.apache.org/repos/asf/celix.git


The following commit(s) were added to 
refs/heads/feature/refactor_tcp_receive_function by this push:
     new fb1d09f  Fix filter_test OSX build error
fb1d09f is described below

commit fb1d09f3b903c404a66e04fa45d115e76e821ecc
Author: Roy Bulter <[email protected]>
AuthorDate: Sun May 31 20:49:17 2020 +0200

    Fix filter_test OSX build error
---
 libs/utils/private/test/filter_test.cpp | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

diff --git a/libs/utils/private/test/filter_test.cpp 
b/libs/utils/private/test/filter_test.cpp
index 651eda5..e0c25ef 100644
--- a/libs/utils/private/test/filter_test.cpp
+++ b/libs/utils/private/test/filter_test.cpp
@@ -155,7 +155,7 @@ TEST(filter, create_misc){
     const char *filter_str3 = "(test_attr3=*attr3)";
     get_filter = celix_filter_create(filter_str3);
     CHECK(get_filter != NULL);
-    LONGS_EQUAL(CELIX_FILTER_OPERAND_SUBSTRING, get_filter->operand)
+    LONGS_EQUAL(CELIX_FILTER_OPERAND_SUBSTRING, get_filter->operand);
     LONGS_EQUAL(2, celix_arrayList_size((celix_array_list_t*) 
get_filter->children));
     celix_filter_destroy(get_filter);
 

Reply via email to