@@ -3659,12 +3659,12 @@ def test_filter_enrollment(self):
3659
3659
enrollment = indv ['enrollments' ][0 ]
3660
3660
self .assertEqual (enrollment ['group' ]['name' ], 'Bitergia' )
3661
3661
3662
- # Test partial organization name match
3662
+ # Test no results for partial organization name match
3663
3663
executed = client .execute (SH_INDIVIDUALS_ENROLLMENT_FILTER % 'bit' ,
3664
3664
context_value = self .context_value )
3665
3665
3666
3666
individuals = executed ['data' ]['individuals' ]['entities' ]
3667
- self .assertEqual (len (individuals ), 2 )
3667
+ self .assertEqual (len (individuals ), 0 )
3668
3668
3669
3669
# Test organization name with spaces
3670
3670
executed = client .execute (SH_INDIVIDUALS_ENROLLMENT_FILTER % 'bit company' ,
@@ -3709,12 +3709,12 @@ def test_filter_team_enrollment(self):
3709
3709
self .assertEqual (enrollment ['group' ]['name' ], 'Team 1' )
3710
3710
self .assertEqual (enrollment ['group' ]['type' ], 'team' )
3711
3711
3712
- # Test partial team name match
3712
+ # Test no results for partial team name match
3713
3713
executed = client .execute (SH_INDIVIDUALS_ENROLLMENT_FILTER % 'tea' ,
3714
3714
context_value = self .context_value )
3715
3715
3716
3716
individuals = executed ['data' ]['individuals' ]['entities' ]
3717
- self .assertEqual (len (individuals ), 2 )
3717
+ self .assertEqual (len (individuals ), 0 )
3718
3718
3719
3719
# Test no results for enrollment
3720
3720
executed = client .execute (SH_INDIVIDUALS_ENROLLMENT_FILTER % 'Organization' ,
0 commit comments