Skip to content

Commit

Permalink
test: fix also filenames in unit tests
Browse files Browse the repository at this point in the history
  • Loading branch information
zonca committed Dec 12, 2023
1 parent b2e0e91 commit b6b9238
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 5 deletions.
4 changes: 2 additions & 2 deletions pysm3/tests/test_dust_pysm3.py
Original file line number Diff line number Diff line change
Expand Up @@ -20,7 +20,7 @@ def test_dust_model_353(model_tag):
output = model.get_emission(freq)

input_template = pysm3.models.read_map(
"dust_gnilc/gnilc_dust_template_nside{nside}.fits".format(nside=nside),
"dust_gnilc/gnilc_dust_template_nside{nside}_2023.02.10.fits".format(nside=nside),
nside=nside,
field=(0, 1, 2),
)
Expand All @@ -44,7 +44,7 @@ def test_gnilc_857(model_tag):
output = model.get_emission(freq)

input_template = pysm3.models.read_map(
"dust_gnilc/gnilc_dust_template_nside{nside}.fits".format(nside=2048),
"dust_gnilc/gnilc_dust_template_nside{nside}_2023.02.10.fits".format(nside=2048),
nside=2048,
field=(0, 1, 2),
)
Expand Down
6 changes: 3 additions & 3 deletions pysm3/tests/test_synch_pysm3.py
Original file line number Diff line number Diff line change
Expand Up @@ -46,12 +46,12 @@ def test_synch_model_s7_44(model_tag):

freq_ref = 23 * u.GHz
beta = pysm3.models.read_map(
"synch/synch_beta_nside{nside}.fits".format(nside=nside),
"synch/synch_beta_nside{nside}_2023.02.16.fits".format(nside=nside),
nside=nside,
field=0,
)
curvature = pysm3.models.read_map(
"synch/synch_curvature_nside{nside}.fits".format(nside=nside),
"synch/synch_curvature_nside{nside}_2023.02.17.fits".format(nside=nside),
nside=nside,
field=0,
)
Expand Down Expand Up @@ -101,7 +101,7 @@ def test_synch_44(model_tag):
-3.1
if model_tag == "s4"
else pysm3.models.read_map(
"synch/synch_beta_nside{nside}.fits".format(nside=nside),
"synch/synch_beta_nside{nside}_2023.02.16.fits".format(nside=nside),
nside=nside,
field=0,
)
Expand Down

0 comments on commit b6b9238

Please sign in to comment.