Skip to content
Snippets Groups Projects
Verified Commit b371e63b authored by Tamas Gal's avatar Tamas Gal :speech_balloon:
Browse files

Fix typos

parent 256b3e1c
No related branches found
No related tags found
No related merge requests found
......@@ -9,7 +9,7 @@ to deal with dataformats used in KM3NeT.
## Installation
`KM3Acoustics.jl` is not an officially registered Julia package but it's
`KM3io.jl` is not an officially registered Julia package but it's
available via the KM3NeT Julia registry. To add the KM3NeT Julia registry,
execute once:
......
......@@ -16,17 +16,17 @@ const SAMPLES_DIR = joinpath(@__DIR__, "samples")
@test hydrophoneenabled(mod)
@test piezoenabled(mod)
status = 1 << KM3Acoustics.MODULE_STATUS.PIEZO_DISABLE
status = 1 << KM3io.MODULE_STATUS.PIEZO_DISABLE
mod = DetectorModule(1, UTMPosition(0, 0, 0), Location(0, 0), 0, PMT[], missing, status, 0)
@test !piezoenabled(mod)
@test hydrophoneenabled(mod)
status = 1 << KM3Acoustics.MODULE_STATUS.HYDROPHONE_DISABLE
status = 1 << KM3io.MODULE_STATUS.HYDROPHONE_DISABLE
mod = DetectorModule(1, UTMPosition(0, 0, 0), Location(0, 0), 0, PMT[], missing, status, 0)
@test piezoenabled(mod)
@test !hydrophoneenabled(mod)
status = (1 << KM3Acoustics.MODULE_STATUS.HYDROPHONE_DISABLE) | (1 << KM3Acoustics.MODULE_STATUS.PIEZO_DISABLE)
status = (1 << KM3io.MODULE_STATUS.HYDROPHONE_DISABLE) | (1 << KM3io.MODULE_STATUS.PIEZO_DISABLE)
mod = DetectorModule(1, UTMPosition(0, 0, 0), Location(0, 0), 0, PMT[], missing, status, 0)
@test !piezoenabled(mod)
@test !hydrophoneenabled(mod)
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment