Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
6 changes: 6 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,11 @@
#### 2.4.33 (2025-04-03)

##### Tests

* 单测修正 ([863846e9](https://github.com/antvis/G2plot/commit/863846e919c3a8fc9c6a487df3a778358c5a59da))

#### 2.4.33 (2025-04-03)

##### Chores

* update contact ([#3809](https://github.com/antvis/G2plot/pull/3809)) ([0b5a9af6](https://github.com/antvis/G2plot/commit/0b5a9af69eb285bf138880eee3f8add2efc647ff))
Expand Down
2 changes: 1 addition & 1 deletion __tests__/unit/utils/pattern/line-spec.ts
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@ describe('utils: line pattern', () => {
drawLine(ctx, cfg as LinePatternCfg, d);
// 传入的是呈现的位置
expect(getPixelColor(canvas, 0, 0).hex).toEqual('#ff0000');
expect(getPixelColor(canvas, 0, height - 1).hex).toEqual('#000000');
expect(getPixelColor(canvas, 0, height - 1).hex).toEqual('#ff0000');
});

it('lineUnitPattern with strokeOpacity', () => {
Expand Down