1
0
mirror of https://github.com/Toxblh/MTMR.git synced 2026-01-10 17:08:39 +00:00

Revert "fixed tests"

This reverts commit 7c9dd26eb0.
This commit is contained in:
Toxblh 2019-05-15 16:39:32 +01:00
parent 7c9dd26eb0
commit 5b6b6dfa56
2 changed files with 3 additions and 3 deletions

View File

@ -19,7 +19,7 @@
<key>CFBundleShortVersionString</key> <key>CFBundleShortVersionString</key>
<string>0.20.3</string> <string>0.20.3</string>
<key>CFBundleVersion</key> <key>CFBundleVersion</key>
<string>201</string> <string>197</string>
<key>LSApplicationCategoryType</key> <key>LSApplicationCategoryType</key>
<string>public.app-category.utilities</string> <string>public.app-category.utilities</string>
<key>LSMinimumSystemVersion</key> <key>LSMinimumSystemVersion</key>

View File

@ -40,7 +40,7 @@ class ParseConfig: XCTestCase {
XCTFail() XCTFail()
return return
} }
guard case .keyPressSession(keycode: 53)? = result?.first?.action else { guard case .keyPress(keycode: 53)? = result?.first?.action else {
XCTFail() XCTFail()
return return
} }
@ -55,7 +55,7 @@ class ParseConfig: XCTestCase {
XCTFail() XCTFail()
return return
} }
guard case .keyPressSession(keycode: 53)? = result?.first?.action else { guard case .keyPress(keycode: 53)? = result?.first?.action else {
XCTFail() XCTFail()
return return
} }