Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

PR: Add default shape argument to colour.quality.cfi2017.sd_reference_illuminant definition. #1320

Open
wants to merge 2 commits into
base: develop
Choose a base branch
from
Open
Changes from 1 commit
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
9 changes: 9 additions & 0 deletions colour/quality/tests/test_cfi2017.py
Original file line number Diff line number Diff line change
Expand Up @@ -19,6 +19,7 @@
reshape_sd,
sd_blackbody,
)
from colour.colorimetry.spectrum import SPECTRAL_SHAPE_DEFAULT
from colour.quality.cfi2017 import (
CCT_reference_illuminant,
colour_fidelity_index_CIE2017,
Expand Down Expand Up @@ -924,6 +925,14 @@ class TestSdReferenceIlluminant:
definition unit tests methods.
"""

def test_default_args(self) -> None:
"""Test :func:`color.quality.CIE2017.sd_reference_illuminant` for
default shape argument.
"""

sd = sd_reference_illuminant(5421)
assert sd.shape == SPECTRAL_SHAPE_DEFAULT

Comment on lines +928 to +935
Copy link
Member

Choose a reason for hiding this comment

The reason will be displayed to describe this comment to others. Learn more.

Minor

It is fine to have this test in the test_sd_reference_illuminant method. We are not doing "true" unit tests.

def test_sd_reference_illuminant(self) -> None:
"""
Test :func:`colour.quality.CIE2017.sd_reference_illuminant`
Expand Down
Loading