diff options
author | bitnitdit <[email protected]> | 2017-08-25 19:24:20 +0800 |
---|---|---|
committer | bitnitdit <[email protected]> | 2017-08-25 19:33:37 +0800 |
commit | 1f8be88437566ad0aff20a3f6f8230ee78574e4c (patch) | |
tree | 2d6ca621a8110c1d5ebca8ffba23411409e4094f /lib/compiler/test | |
parent | fbed0ac73b65010953db2a2b87c472b191c1382e (diff) | |
download | otp-1f8be88437566ad0aff20a3f6f8230ee78574e4c.tar.gz otp-1f8be88437566ad0aff20a3f6f8230ee78574e4c.tar.bz2 otp-1f8be88437566ad0aff20a3f6f8230ee78574e4c.zip |
Switch query back to be normal atom
query was no longer a keyword since the commit 0dc3a29744bed0b7f483ad72e19773dc0982ea50 2012-11-19.
So the quotes around query, when it used as atom, no needed.
Diffstat (limited to 'lib/compiler/test')
-rw-r--r-- | lib/compiler/test/compilation_SUITE_data/opt_crash.erl | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/lib/compiler/test/compilation_SUITE_data/opt_crash.erl b/lib/compiler/test/compilation_SUITE_data/opt_crash.erl index f1607cca68..c65ec31593 100644 --- a/lib/compiler/test/compilation_SUITE_data/opt_crash.erl +++ b/lib/compiler/test/compilation_SUITE_data/opt_crash.erl @@ -33,7 +33,7 @@ test() -> {userinfo,nil}, fun() -> nil end}, nil}, - {'query',nil}}}, + {query,nil}}}, {absoluteURI, {scheme,_}, @@ -43,7 +43,7 @@ test() -> {userinfo,nil}, HostportBefore}, nil}, - {'query',nil}}} = URI_Before, + {query,nil}}} = URI_Before, %% ... some funky code ommitted, not relevant ... @@ -55,7 +55,7 @@ test() -> {userinfo,nil}, HostportAfter}, nil}, - {'query',nil}}} = URI_Before, + {query,nil}}} = URI_Before, %% NOTE: I intended to write URI_After instead of URI_Before %% but the accident revealed that when you add the line below, %% it causes internal error in v3_codegen on compilation |