Skip to content

Commit

Permalink
fix(plugin_test): 修复 Fake Driver 的 server_app 方法抛出异常导致部分插件测试报错的问题 (#214)
Browse files Browse the repository at this point in the history
  • Loading branch information
he0119 authored Apr 20, 2024
1 parent 291a4b1 commit 26bbb1f
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 1 deletion.
4 changes: 4 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -7,6 +7,10 @@ and this project adheres to [Semantic Versioning](https://semver.org/lang/zh-CN/

## [Unreleased]

### Fixed

- 修复 Fake Driver 的 server_app 方法抛出异常导致部分插件测试报错的问题

## [3.3.0] - 2024-04-16

### Added
Expand Down
2 changes: 1 addition & 1 deletion src/utils/plugin_test.py
Original file line number Diff line number Diff line change
Expand Up @@ -59,7 +59,7 @@ def run(self, *args, **kwargs):
@property
@override
def server_app(self):
raise NotImplementedError
return None
@property
@override
Expand Down

0 comments on commit 26bbb1f

Please sign in to comment.