Skip to content

Commit

Permalink
[test] Fix unrecognized test names in test_bls_assume_in_range.py (#3250
Browse files Browse the repository at this point in the history
)
  • Loading branch information
strongoier authored Oct 22, 2021
1 parent 525c09a commit 2680dab
Showing 1 changed file with 4 additions and 4 deletions.
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

0 comments on commit 2680dab

Please sign in to comment.