From 4e8f6a7017192250c70224b2f80a1695a801b78d Mon Sep 17 00:00:00 2001 From: William Fondrie Date: Wed, 25 Oct 2023 13:55:57 -0700 Subject: [PATCH] Linting change --- tests/unit_tests/test_proteins.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/tests/unit_tests/test_proteins.py b/tests/unit_tests/test_proteins.py index 387e5597..0f0ec2e9 100644 --- a/tests/unit_tests/test_proteins.py +++ b/tests/unit_tests/test_proteins.py @@ -1,10 +1,10 @@ """Test that our picked protein appraoch is work as we expect.""" import polars as pl import pytest +from polars.testing import assert_frame_equal from mokapot import PsmSchema from mokapot.proteins import Proteins -from polars.testing import assert_series_equal, assert_frame_equal @pytest.fixture @@ -52,7 +52,7 @@ def test_proteins(data, schema): .with_columns( pl.col("stripped sequence").cast(pl.Utf8), pl.col("mokapot protein group").cast(pl.Utf8), - pl.col("# mokapot protein groups").cast(pl.Int64) + pl.col("# mokapot protein groups").cast(pl.Int64), ) .collect() ) @@ -78,6 +78,4 @@ def test_proteins(data, schema): ] expected = pl.DataFrame(data, schema=cols) - print(picked) - print(expected) assert_frame_equal(picked, expected)