mirror of
https://github.com/sezanzeb/input-remapper
synced 2024-11-08 07:10:36 +00:00
check for {
This commit is contained in:
parent
e98150a338
commit
e3a08718eb
@ -20,7 +20,6 @@
|
|||||||
|
|
||||||
|
|
||||||
import os
|
import os
|
||||||
import time
|
|
||||||
import unittest
|
import unittest
|
||||||
import shutil
|
import shutil
|
||||||
|
|
||||||
@ -128,6 +127,8 @@ class TestConfig(unittest.TestCase):
|
|||||||
# changes {{ to {.
|
# changes {{ to {.
|
||||||
self.assertNotIn('{{', content)
|
self.assertNotIn('{{', content)
|
||||||
self.assertNotIn('}}', content)
|
self.assertNotIn('}}', content)
|
||||||
|
self.assertIn('{', content)
|
||||||
|
self.assertIn('}', content)
|
||||||
|
|
||||||
|
|
||||||
if __name__ == "__main__":
|
if __name__ == "__main__":
|
||||||
|
Loading…
Reference in New Issue
Block a user