diff options
author | Allan Wang <me@allanwang.ca> | 2019-12-29 21:54:15 -0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2019-12-29 21:54:15 -0800 |
commit | 86df98094d202701690d597024558ccaa6d41abd (patch) | |
tree | 41bd58c12f5fe6b1b7df52b0bb1d42613441c107 /app/src/test | |
parent | 692c1233cd3dba0d2df06dc65ebef1fc1ecc1cad (diff) | |
download | frost-86df98094d202701690d597024558ccaa6d41abd.tar.gz frost-86df98094d202701690d597024558ccaa6d41abd.tar.bz2 frost-86df98094d202701690d597024558ccaa6d41abd.zip |
Fix townhall loading (#1603)
* Fix townhall loading
* Clean up logs
* Remove extra imports
* Optimize imports
* Fix query test
Diffstat (limited to 'app/src/test')
-rw-r--r-- | app/src/test/kotlin/com/pitchedapps/frost/facebook/FbUrlTest.kt | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbUrlTest.kt b/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbUrlTest.kt index 799b11a9..4dc6504d 100644 --- a/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbUrlTest.kt +++ b/app/src/test/kotlin/com/pitchedapps/frost/facebook/FbUrlTest.kt @@ -62,8 +62,8 @@ class FbUrlTest { */ @Test fun queryConversion() { - val url = "${FB_URL_BASE}l.php?u=https%3A%2F%2Fgoogle.ca&h=hi" - val expected = "https://google.ca?h=hi" + val url = "${FB_URL_BASE}l.php?u=https%3A%2F%2Fgoogle.ca&qc=hi" + val expected = "https://google.ca?qc=hi" assertFbFormat(expected, url) } |