@@ -64,15 +64,15 @@ public void testAddSystemHook() throws GitLabApiException {
64
64
assertTrue (hook .getPushEvents ());
65
65
assertFalse (hook .getTagPushEvents ());
66
66
assertFalse (hook .getMergeRequestsEvents ());
67
- assertFalse (hook .getRepositoryUpdateEvents ());
67
+ assertTrue (hook .getRepositoryUpdateEvents ());
68
68
assertTrue (hook .getEnableSslVerification ());
69
69
70
70
gitLabApi .getSystemHooksApi ().deleteSystemHook (hook );
71
71
72
72
hook .withPushEvents (false )
73
73
.withTagPushEvents (true )
74
74
.withMergeRequestsEvents (true )
75
- .withRepositoryUpdateEvents (true )
75
+ .withRepositoryUpdateEvents (false )
76
76
.withEnableSslVerification (false );
77
77
78
78
SystemHook updatedHook = gitLabApi .getSystemHooksApi ().addSystemHook (TEST_HOOK_URL , TEST_SECRET_TOKEN , hook );
@@ -81,10 +81,10 @@ public void testAddSystemHook() throws GitLabApiException {
81
81
assertFalse (hook .getPushEvents ());
82
82
assertTrue (hook .getTagPushEvents ());
83
83
assertTrue (hook .getMergeRequestsEvents ());
84
- assertTrue (hook .getRepositoryUpdateEvents ());
84
+ assertFalse (hook .getRepositoryUpdateEvents ());
85
85
assertFalse (hook .getEnableSslVerification ());
86
86
87
- gitLabApi .getSystemHooksApi ().deleteSystemHook (hook );
87
+ gitLabApi .getSystemHooksApi ().deleteSystemHook (updatedHook );
88
88
89
89
}
90
90
0 commit comments