Skip to content

Commit

Permalink
调整单测
Browse files Browse the repository at this point in the history
  • Loading branch information
noear committed Sep 23, 2023
1 parent f24b8c2 commit 4d2024c
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions UPDATE_LOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -15,13 +15,12 @@
* 新增 graphql-solon-plugin 插件
* 增加 quartz jdbc 及时更新支持(数据库里变了,它马上变) ???
* 调整 使用更多的 slf4j 替换 LogUtil ???
* 调整 solon.config.add 与 solon.config.load 合并,规范格式(同时支持内部与外部) ???
* 调整 简化 SocketD ???

### 2.5.7

* 调整 solon.config.add 与 solon.config.load 合并,规范格式(同时支持内部与外部) ???
* 添加 `AppContext::newInstance` 接口
* 使用 `solon.config.import` 替代 `solon.config.add``solon.config.load`,后者标为弃用
* 使用 `@Import` 替代 `@PropertySource``@TestPropertySource`,后者标为弃用
* 使用 `@Rollback` 替代 `@TestRollback`,后者标为弃用
* 调整 SolonTestApp 默认关闭 http 服务;避免与已启动服务端口冲突
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
* @author noear 2023/8/16 created
*/
public class OrderDo {
long orderId = 2;
Long orderId = 2L;

public void setOrderId(long orderId) {
this.orderId = orderId;
Expand Down

0 comments on commit 4d2024c

Please sign in to comment.