From 47757b702ce8e35c9b19cd773ba9227c142bee78 Mon Sep 17 00:00:00 2001 From: Pim van Pelt Date: Sun, 20 Mar 2022 22:17:56 +0000 Subject: [PATCH] Correct name for LCP tests --- validator/test_lcp.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/validator/test_lcp.py b/validator/test_lcp.py index b777a0d..c804b59 100644 --- a/validator/test_lcp.py +++ b/validator/test_lcp.py @@ -2,7 +2,7 @@ import unittest import yaml import validator.lcp as lcp -class TestInterfaceMethods(unittest.TestCase): +class TestLCPMethods(unittest.TestCase): def setUp(self): with open("unittest/test_lcp.yaml", "r") as f: self.cfg = yaml.load(f, Loader = yaml.FullLoader)