diff options
author | Hans Bolinder <[email protected]> | 2017-08-29 08:59:55 +0200 |
---|---|---|
committer | GitHub <[email protected]> | 2017-08-29 08:59:55 +0200 |
commit | 608897f0f97ef307f426af6b34f802298275c2b1 (patch) | |
tree | 50d28f33f45b8ce92fec73d8d6d0e6b11212ce43 /lib/compiler | |
parent | 3aa559f584559af3a76ecd8c2367f59e062dbe0e (diff) | |
parent | 1f8be88437566ad0aff20a3f6f8230ee78574e4c (diff) | |
download | otp-608897f0f97ef307f426af6b34f802298275c2b1.tar.gz otp-608897f0f97ef307f426af6b34f802298275c2b1.tar.bz2 otp-608897f0f97ef307f426af6b34f802298275c2b1.zip |
Merge pull request #1525 from bitnitdit/remove-query-keyword-residues
Remove query keyword residues
Diffstat (limited to 'lib/compiler')
-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 |