File tree Expand file tree Collapse file tree 1 file changed +2
-3
lines changed
hibernate-reactive-core/src/test/java/org/hibernate/reactive Expand file tree Collapse file tree 1 file changed +2
-3
lines changed Original file line number Diff line number Diff line change @@ -79,7 +79,7 @@ public void longIdentifierWithStageAPI(TestContext context) {
79
79
@ Test
80
80
public void shortIdentifierWithStageAPI (TestContext context ) {
81
81
ShortEntity entityA = new ShortEntity ( "Short A" );
82
- ShortEntity entityB = new ShortEntity ( "Long B" );
82
+ ShortEntity entityB = new ShortEntity ( "Short B" );
83
83
84
84
Stage .Session session = openSession ();
85
85
test ( context , session
@@ -98,7 +98,6 @@ public void shortIdentifierWithStageAPI(TestContext context) {
98
98
* Mutiny API tests
99
99
*/
100
100
101
-
102
101
@ Test
103
102
public void integerIdentifierWithMutinyAPI (TestContext context ) {
104
103
IntegerEntity entityA = new IntegerEntity ( "Integer A" );
@@ -138,7 +137,7 @@ public void longIdentifierWithMutinyAPI(TestContext context) {
138
137
@ Test
139
138
public void shortIdentifierWithMutinyAPI (TestContext context ) {
140
139
ShortEntity entityA = new ShortEntity ( "Short A" );
141
- ShortEntity entityB = new ShortEntity ( "Long B" );
140
+ ShortEntity entityB = new ShortEntity ( "Short B" );
142
141
143
142
Mutiny .Session session = openMutinySession ();
144
143
test ( context , session
You can’t perform that action at this time.
0 commit comments