Exemple #1
0
def test_merging_check(simulated_dl1_file):
    from lstchain.io.io import merging_check

    # the same file should be mergeable with itself
    dl1_file = simulated_dl1_file

    assert merging_check([dl1_file, dl1_file]) == [dl1_file, dl1_file]
Exemple #2
0
def test_merging_check():
    # the same file should be mergeable with itself
    io.merging_check([dl1_file, dl1_file])
def test_merging_check():
    from lstchain.io.io import merging_check
    # the same file should be mergeable with itself
    [dl1_file, dl1_file] == merging_check([dl1_file, dl1_file])