diff --git a/+tests/+rfc/save.m b/+tests/+rfc/save.m
index 16dc7136fbe02a8ebb0c469f1af86b6efec4e69c..6ffdd7880ab175eaf66343387499b2cd9cb8b345 100644
--- a/+tests/+rfc/save.m
+++ b/+tests/+rfc/save.m
@@ -52,10 +52,8 @@ trajectory.soundSpeedMethod = TRAJ(track).ssmethod;
 trajectory.dopplerCorrection = TRAJ(track).doppler;
 trajectory.velocityMethod = TRAJ(track).vmethod;
 trajectory.status = TRAJ(track).status;
-trajectory.toa = TRAJ(track).toa;
-trajectory.toaDate = TRAJ(track).toa_date;
-trajectory.toaSel = TRAJ(track).toa_sel;
-trajectory.toaIntp = TRAJ(track).toa_intp;
+% The toaData is not required for this test.
+%trajectory.toaData = TRAJ(track).toa;
 trajectory.latitude = TRAJ(track).lat;
 trajectory.longitude = TRAJ(track).lon;
 trajectory.date = TRAJ(track).date;
diff --git a/+tests/+soundsource/load.m b/+tests/+soundsources/load.m
similarity index 80%
rename from +tests/+soundsource/load.m
rename to +tests/+soundsources/load.m
index 5fa5a88874b0624917d47c5449c4f208aa3a6dc5..bddd56a608d9f1b09acfbed5c25b1d60c24f29b5 100644
--- a/+tests/+soundsource/load.m
+++ b/+tests/+soundsources/load.m
@@ -6,6 +6,6 @@ function [datafile] = load()
 dataFileName = fullfile(currentDirectory, '..', 'data', 'HAFOS.soso');
 
 
-datafile = artoa.load.soundsource(dataFileName);
+datafile = artoa.load.soundsources(dataFileName);
 
 end
diff --git a/ci/runAll.m b/ci/runAll.m
index c45570c3eb132eac71b6632f84fcb2bf47ed1f21..a9bd14c14c1bb8ef8776ab182cacf455021f7878 100644
--- a/ci/runAll.m
+++ b/ci/runAll.m
@@ -8,7 +8,7 @@ addpath(genpath(fullfile(currentDirectory, '..')));
 testsToRun = { ...
     @tests.rfb.load, ...
     @tests.ric.save, ...
-    @tests.soundsource.load, ...
+    @tests.soundsources.load, ...
     @tests.trj4.save, ...
     @tests.rfc.save, ...
     @tests.data.toaConversion ...
diff --git a/lib/+artoa/+load/soundsource.m b/lib/+artoa/+load/soundsources.m
similarity index 90%
rename from lib/+artoa/+load/soundsource.m
rename to lib/+artoa/+load/soundsources.m
index 5fc328cb54ea77a866f979d86d098af1ef29d7a7..e29900592861545cc88602a7542a3221a17c04e6 100755
--- a/lib/+artoa/+load/soundsource.m
+++ b/lib/+artoa/+load/soundsources.m
@@ -1,4 +1,4 @@
-function [ soundsource ] = soundsource(pFilename)
+function [ soundsource ] = soundsources(pFilename)
 %RFB Loads a .soso file into memory using the tomlini function.
 %   Creates a struct that contains the sections as properties.
 %