Skip to content

Commit

Permalink
protocol: update tests
Browse files Browse the repository at this point in the history
  • Loading branch information
fracek committed Jan 11, 2024
1 parent 0c4cccd commit 8423b59
Showing 1 changed file with 3 additions and 4 deletions.
7 changes: 3 additions & 4 deletions packages/protocol/src/request.test.ts
Original file line number Diff line number Diff line change
Expand Up @@ -4,10 +4,9 @@ import { StreamDataRequest } from "./request";

describe("RequestBuilder", () => {
it("returns the final request", () => {
const filter = new TestFilter({
num: 123,
text: "abcdef",
});
const filter = new TestFilter();
filter.num = 123;
filter.text = "abcdef";

const request = StreamDataRequest.create()
.withBatchSize(10)
Expand Down

0 comments on commit 8423b59

Please sign in to comment.