diff --git a/Changelog.md b/Changelog.md
--- a/Changelog.md
+++ b/Changelog.md
@@ -23,3 +23,5 @@
 V 1.3.1: Moved test suite outside of the main library into the test source directory. Cleaner setup.
 
 V 1.3.2: Added testDat to Cabal file to make tests work off the tarball.
+
+V 1.3.2.1: Fixed a hard-coded absolute path in the test-suite.
diff --git a/sequence-formats.cabal b/sequence-formats.cabal
--- a/sequence-formats.cabal
+++ b/sequence-formats.cabal
@@ -1,6 +1,6 @@
 cabal-version: >=1.10
 name: sequence-formats
-version: 1.3.2
+version: 1.3.2.1
 license: GPL-3
 license-file: LICENSE
 maintainer: stephan.schiffels@mac.com
diff --git a/src-tests/SequenceFormats/FreqSum/Test.hs b/src-tests/SequenceFormats/FreqSum/Test.hs
--- a/src-tests/SequenceFormats/FreqSum/Test.hs
+++ b/src-tests/SequenceFormats/FreqSum/Test.hs
@@ -14,7 +14,7 @@
 
 fsReadTest :: Assertion
 fsReadTest = runSafeT $ do
-    let fsFile = "/Users/schiffels/repos/github/stschiff/sequence-formats/testDat/example.freqsum"
+    let fsFile = "testDat/example.freqsum"
     (fsHeader, fsProd) <- readFreqSumFile fsFile
     liftIO $ assertEqual "fsReadTest_assertIndEntries" testDatFsHeader fsHeader
     fsEntries <- purely P.fold list fsProd
