Skip to content

Commit

Permalink
geosolutions-it#10342: Markers are not printed correctly
Browse files Browse the repository at this point in the history
Description:
- fix unit test
  • Loading branch information
mahmoudadel54 committed Jun 3, 2024
1 parent b4daf41 commit 83874cb
Showing 1 changed file with 2 additions and 2 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -250,7 +250,7 @@ describe("StyleParserUtils ", () => {
"msHeightReference": "none"
};
const {width, height} = drawWellKnownNameImageFromSymbolizer(symbolizer1);
expect(width).toBe(symbolizer1.size / 2);
expect(height).toBe(symbolizer1.size / 2);
expect(width).toBe(symbolizer1.size);
expect(height).toBe(symbolizer1.size);
});
});

0 comments on commit 83874cb

Please sign in to comment.