Skip to content

Commit

Permalink
[#678] Clean up IdentifierGenerationTypeTest
Browse files Browse the repository at this point in the history
  • Loading branch information
DavideD committed Mar 26, 2021
1 parent be0c940 commit 0a439b4
Showing 1 changed file with 2 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -79,7 +79,7 @@ public void longIdentifierWithStageAPI(TestContext context) {
@Test
public void shortIdentifierWithStageAPI(TestContext context) {
ShortEntity entityA = new ShortEntity( "Short A" );
ShortEntity entityB = new ShortEntity( "Long B" );
ShortEntity entityB = new ShortEntity( "Short B" );

Stage.Session session = openSession();
test( context, session
Expand All @@ -98,7 +98,6 @@ public void shortIdentifierWithStageAPI(TestContext context) {
* Mutiny API tests
*/


@Test
public void integerIdentifierWithMutinyAPI(TestContext context) {
IntegerEntity entityA = new IntegerEntity( "Integer A" );
Expand Down Expand Up @@ -138,7 +137,7 @@ public void longIdentifierWithMutinyAPI(TestContext context) {
@Test
public void shortIdentifierWithMutinyAPI(TestContext context) {
ShortEntity entityA = new ShortEntity( "Short A" );
ShortEntity entityB = new ShortEntity( "Long B" );
ShortEntity entityB = new ShortEntity( "Short B" );

Mutiny.Session session = openMutinySession();
test( context, session
Expand Down

0 comments on commit 0a439b4

Please sign in to comment.