Skip to content

Commit 0a439b4

Browse files
committed
[#678] Clean up IdentifierGenerationTypeTest
1 parent be0c940 commit 0a439b4

File tree

1 file changed

+2
-3
lines changed

1 file changed

+2
-3
lines changed

hibernate-reactive-core/src/test/java/org/hibernate/reactive/IdentifierGenerationTypeTest.java

Lines changed: 2 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -79,7 +79,7 @@ public void longIdentifierWithStageAPI(TestContext context) {
7979
@Test
8080
public void shortIdentifierWithStageAPI(TestContext context) {
8181
ShortEntity entityA = new ShortEntity( "Short A" );
82-
ShortEntity entityB = new ShortEntity( "Long B" );
82+
ShortEntity entityB = new ShortEntity( "Short B" );
8383

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

101-
102101
@Test
103102
public void integerIdentifierWithMutinyAPI(TestContext context) {
104103
IntegerEntity entityA = new IntegerEntity( "Integer A" );
@@ -138,7 +137,7 @@ public void longIdentifierWithMutinyAPI(TestContext context) {
138137
@Test
139138
public void shortIdentifierWithMutinyAPI(TestContext context) {
140139
ShortEntity entityA = new ShortEntity( "Short A" );
141-
ShortEntity entityB = new ShortEntity( "Long B" );
140+
ShortEntity entityB = new ShortEntity( "Short B" );
142141

143142
Mutiny.Session session = openMutinySession();
144143
test( context, session

0 commit comments

Comments
 (0)