Skip to content

Commit

Permalink
AG-1412 update unit test for clarity
Browse files Browse the repository at this point in the history
  • Loading branch information
sagely1 committed Apr 4, 2024
1 parent 3b28333 commit 1467ca8
Showing 1 changed file with 2 additions and 1 deletion.
Original file line number Diff line number Diff line change
Expand Up @@ -530,7 +530,8 @@ describe('Component: GeneComparisonToolComponent', () => {

it('should set circle size to zero for null pValues', () => {
// null values should result in a circle size of zero pixels
const result = component.getCircleSize(null);
const pValue = null;
const result = component.getCircleSize(pValue);
expect(result).toBe(0);
});

Expand Down

0 comments on commit 1467ca8

Please sign in to comment.