Skip to content

Commit 186f0e1

Browse files
committed
fix test
1 parent 99cfc51 commit 186f0e1

File tree

2 files changed

+4
-4
lines changed

2 files changed

+4
-4
lines changed

http-generator-jex/src/main/java/io/avaje/http/generator/jex/JexAdapter.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@
1212

1313
class JexAdapter implements PlatformAdapter {
1414

15-
static final String JEX_CONTEXT = "io.avaje.jex.Context";
15+
static final String JEX_CONTEXT = "io.avaje.jex.http.Context";
1616

1717
@Override
1818
public boolean isContextType(String rawType) {

tests/test-jex/src/main/java/org/example/web/HelloController.java

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,15 +1,15 @@
11
package org.example.web;
22

3+
import java.math.BigInteger;
4+
35
import io.avaje.http.api.Controller;
46
import io.avaje.http.api.Default;
57
import io.avaje.http.api.Get;
68
import io.avaje.http.api.Path;
79
import io.avaje.http.api.Produces;
810
import io.avaje.http.api.Put;
911
import io.avaje.http.api.Valid;
10-
import io.avaje.jex.Context;
11-
12-
import java.math.BigInteger;
12+
import io.avaje.jex.http.Context;
1313

1414
// @Roles(AppRoles.BASIC_USER)
1515
@Controller

0 commit comments

Comments
 (0)