Skip to content

Commit

Permalink
minor change
Browse files Browse the repository at this point in the history
- switch order of commented debugging statements for easier use
  • Loading branch information
kkappler committed Jan 3, 2024
1 parent 6eebf95 commit 048720f
Showing 1 changed file with 4 additions and 2 deletions.
6 changes: 4 additions & 2 deletions tests/synthetic/test_fourier_coefficients.py
Original file line number Diff line number Diff line change
Expand Up @@ -122,15 +122,17 @@ def test_create_then_use_stored_fcs_for_processing(self):

z_file_path_1 = AURORA_RESULTS_PATH.joinpath("test2.zss")
z_file_path_2 = AURORA_RESULTS_PATH.joinpath("test2_from_stored_fc.zss")
tf1 = process_synthetic_2(force_make_mth5=True, z_file_path=z_file_path_1, save_fc=True)
tf1 = process_synthetic_2(
force_make_mth5=True, z_file_path=z_file_path_1, save_fc=True
)
tf2 = process_synthetic_2(force_make_mth5=False, z_file_path=z_file_path_2)
assert tf1 == tf2


def main():
# test_case = TestAddFourierCoefficientsToSyntheticData()
# test_case.test_create_then_use_stored_fcs_for_processing()
# test_case.setUpClass()
# test_case.test_create_then_use_stored_fcs_for_processing()
# test_case.test_123()
# test_case.test_decimation_and_stft_config_creator()
# print("se funciona!")
Expand Down

0 comments on commit 048720f

Please sign in to comment.