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

[test] Fix unrecognized test names in test_bls_assume_in_range.py #3250

Merged
merged 1 commit into from
Oct 22, 2021
Merged
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
8 changes: 4 additions & 4 deletions tests/python/test_bls_assume_in_range.py
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@


@ti.test(require=ti.extension.bls)
def _test_scattering():
def test_scattering():
bls_particle_grid(N=128,
ppc=10,
block_size=8,
Expand All @@ -13,7 +13,7 @@ def _test_scattering():


@ti.test(require=ti.extension.bls)
def _test_scattering_offset():
def test_scattering_offset():
bls_particle_grid(N=128,
ppc=10,
block_size=8,
Expand All @@ -22,7 +22,7 @@ def _test_scattering_offset():


@ti.test(require=ti.extension.bls)
def _test_scattering_two_pointer_levels():
def test_scattering_two_pointer_levels():
bls_particle_grid(N=128,
ppc=10,
block_size=8,
Expand All @@ -41,7 +41,7 @@ def test_gathering():


@ti.test(require=ti.extension.bls)
def _test_gathering_offset():
def test_gathering_offset():
bls_particle_grid(N=128,
ppc=10,
block_size=8,
Expand Down