File tree Expand file tree Collapse file tree 1 file changed +5
-2
lines changed
src/test/java/org/zendesk/client/v2 Expand file tree Collapse file tree 1 file changed +5
-2
lines changed Original file line number Diff line number Diff line change @@ -109,6 +109,7 @@ public void getTicket() throws Exception {
109
109
}
110
110
111
111
@ Test
112
+ @ Ignore ("Needs specfic ticket form instance" )
112
113
public void getTicketForm () throws Exception {
113
114
createClientWithTokenOrPassword ();
114
115
TicketForm ticketForm = instance .getTicketForm (27562 );
@@ -127,12 +128,13 @@ public void getTicketForms() throws Exception {
127
128
}
128
129
129
130
@ Test
131
+ @ Ignore ("Needs specfic ticket form instance" )
130
132
public void getTicketFieldsOnForm () throws Exception {
131
133
createClientWithTokenOrPassword ();
132
134
TicketForm ticketForm = instance .getTicketForm (27562 );
133
135
for (Integer id :ticketForm .getTicketFieldIds ()){
134
- Field f = instance .getTicketField (id );
135
- assertNotNull (f );
136
+ Field f = instance .getTicketField (id );
137
+ assertNotNull (f );
136
138
}
137
139
assertThat (ticketForm , notNullValue ());
138
140
assertTrue (ticketForm .isEndUserVisible ());
@@ -166,6 +168,7 @@ public void getTicketsPagesRequests() throws Exception {
166
168
}
167
169
168
170
@ Test
171
+ @ Ignore ("Needs test data setup correctly" )
169
172
public void getRecentTickets () throws Exception {
170
173
createClientWithTokenOrPassword ();
171
174
int count = 0 ;
You can’t perform that action at this time.
0 commit comments