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