Remove `skip-string-normalization` in Python formatter config
[babeltrace.git] / tests / bindings / python / bt2 / test_mip.py
index 6091ef016f02574c914c8aeaf9b8909c0a8fb941..a73054fad236c3e5fc65d99dc6af10facb5f9a0d 100644 (file)
@@ -1,20 +1,7 @@
+# SPDX-License-Identifier: GPL-2.0-only
 #
 # Copyright (C) 2019 EfficiOS Inc.
 #
-# This program is free software; you can redistribute it and/or
-# modify it under the terms of the GNU General Public License
-# as published by the Free Software Foundation; only version 2
-# of the License.
-#
-# This program is distributed in the hope that it will be useful,
-# but WITHOUT ANY WARRANTY; without even the implied warranty of
-# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the
-# GNU General Public License for more details.
-#
-# You should have received a copy of the GNU General Public License
-# along with this program; if not, write to the Free Software
-# Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111-1307, USA.
-#
 
 import unittest
 import bt2
@@ -98,7 +85,7 @@ class MipTestCase(unittest.TestCase):
         descriptors = [bt2.ComponentDescriptor(Source1)]
 
         with self.assertRaises(TypeError):
-            bt2.get_greatest_operative_mip_version(descriptors, 'lel')
+            bt2.get_greatest_operative_mip_version(descriptors, "lel")
 
     def test_get_greatest_operative_mip_version_wrong_log_level_value(self):
         class Source1(
@@ -115,5 +102,5 @@ class MipTestCase(unittest.TestCase):
         self.assertEqual(bt2.get_maximal_mip_version(), 0)
 
 
-if __name__ == '__main__':
+if __name__ == "__main__":
     unittest.main()
This page took 0.024983 seconds and 4 git commands to generate.