From 6a7b0c401b7041dc5dc3dd9b8189ee21eca6ac43 Mon Sep 17 00:00:00 2001 From: Louis-Philippe Lemieux Perreault Date: Wed, 14 Feb 2024 09:28:42 -0500 Subject: [PATCH] Fixed a future warning by only using INT in BIM --- pyplink/tests/test_pyplink.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pyplink/tests/test_pyplink.py b/pyplink/tests/test_pyplink.py index 0d4090c..ad3aee4 100644 --- a/pyplink/tests/test_pyplink.py +++ b/pyplink/tests/test_pyplink.py @@ -372,7 +372,7 @@ def test_get_bim(self): # Testing that changing a values in the BIM, doesn't change the value # in the original BIM bim.loc["rs4030300", "chrom"] = 2 - bim.loc["rs2949420", "cm"] = 0.1 + bim.loc["rs2949420", "cm"] = 100 comparison = ori_bim.loc[:, ["chrom", "pos", "cm", "a1", "a2"]] == bim self.assertFalse(comparison.all().chrom) self.assertFalse(comparison.all().cm)