Skip to content

Commit

Permalink
feat: set dbName
Browse files Browse the repository at this point in the history
  • Loading branch information
lucas-myx committed Jan 4, 2024
1 parent c2f84d7 commit 1344e44
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -68,7 +68,8 @@ public MockResult replay() {
}

public MockResult replay(String serializer) {
boolean ignoreMockResult = IgnoreUtils.ignoreMockResult(this.dbName, methodName);
// TODO: update after all dal components have obtained the real dbName
boolean ignoreMockResult = IgnoreUtils.ignoreMockResult("database", methodName);
Mocker replayMocker = MockUtils.replayMocker(makeMocker(null, serializer));
Object replayResult = null;
if (MockUtils.checkResponseMocker(replayMocker)) {
Expand Down

0 comments on commit 1344e44

Please sign in to comment.