Merge pull request #1784 from Kodiologist/py38b

Fix a test for Python 3.8.0b1
This commit is contained in:
Kodi Arfer 2019-06-25 13:00:10 -04:00 committed by GitHub
commit 0531f056aa
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -386,7 +386,7 @@ in expansions."
;; Now, let's use a `require`d macro that depends on another macro defined only
;; in this scope.
(defmacro local-test-macro [x]
(.format "This is the local version of `nonlocal-test-macro` returning {}!" x))
(.format "This is the local version of `nonlocal-test-macro` returning {}!" (int x)))
(assert (= "This is the local version of `nonlocal-test-macro` returning 3!"
(test-module-macro-2 3)))