From abf3758d86c1ee37e458d79e62be69e4c23e515c Mon Sep 17 00:00:00 2001 From: Alexanderlacuna Date: Tue, 27 Oct 2020 14:26:06 +0300 Subject: switch from single quote to double quote --- wqflask/tests/wqflask/show_trait/test_export_trait_data.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/wqflask/tests/wqflask/show_trait/test_export_trait_data.py b/wqflask/tests/wqflask/show_trait/test_export_trait_data.py index bc45a213..98d599b1 100644 --- a/wqflask/tests/wqflask/show_trait/test_export_trait_data.py +++ b/wqflask/tests/wqflask/show_trait/test_export_trait_data.py @@ -7,7 +7,7 @@ class TestExportTraits(unittest.TestCase): """Test methods related to converting dict to sortedlist""" def test_dict_to_sortedlist(self): - '''test for conversion of dict to sorted list''' + """test for conversion of dict to sorted list""" sample1 = { "other": "exp1", "name": "exp2" @@ -33,11 +33,11 @@ class TestExportTraits(unittest.TestCase): self.assertEqual([3, 6, 1, 4], dict_to_sorted_list(sample2)) self.assertEqual([3, 6, 1, 4], dict_to_sorted_list(rever)) self.assertEqual(["one"], dict_to_sorted_list(oneItem)) - '''test that the func returns the values not the keys''' + """test that the func returns the values not the keys""" self.assertFalse(["other", "name"] == dict_to_sorted_list(sample1)) def test_cmp_samples(self): - '''test for comparing samples function''' + """test for comparing samples function""" sampleA = [ [ ("value", "other"), -- cgit v1.2.3