File tree Expand file tree Collapse file tree 1 file changed +3
-3
lines changed
src/test/java/org/omg/sysml/api Expand file tree Collapse file tree 1 file changed +3
-3
lines changed Original file line number Diff line number Diff line change @@ -166,17 +166,17 @@ public void postProjectTest() {
166
166
body .setId (id );
167
167
body .setDescription (description );
168
168
body .setName (name );
169
- Project response ;
169
+
170
170
try {
171
- response = api .postProject (body );
171
+ Project response = api .postProject (body );
172
172
System .out .println (response );
173
173
assertEquals (id .toString (), response .getId ().toString ());
174
174
assertEquals (description , response .getDescription ());
175
175
assertEquals (name , response .getName ());
176
176
assertEquals (AtTypeEnum .PROJECT , response .getAtType ());
177
177
} catch (ApiException e ) {
178
178
e .printStackTrace ();
179
- fail ("getProjectByIdTest_404 failed: not expecting ApiException" );
179
+ fail ("postProjectTest failed: not expecting ApiException" );
180
180
}
181
181
}
182
182
You can’t perform that action at this time.
0 commit comments