Skip to content

Commit

Permalink
Fixed sort order in test case.
Browse files Browse the repository at this point in the history
  • Loading branch information
mschilli committed Jan 20, 2013
1 parent a302d67 commit 1e7434c
Show file tree
Hide file tree
Showing 4 changed files with 7 additions and 3 deletions.
3 changes: 3 additions & 0 deletions Changes
@@ -1,3 +1,6 @@
0.06 (01/19/2013)
(ms) Fixed sort order in test case.

0.05 (04/01/2012)
(ms) Requiring perl-5.8 to avoid utf8 problems with 5.6.
(ms) Pavel Zhytomirsky submitted a patch checking for undefined variables
Expand Down
2 changes: 1 addition & 1 deletion HTTPBuildQuery.pm
Expand Up @@ -13,7 +13,7 @@ require Exporter;
our @ISA = qw(Exporter);
our @EXPORT_OK = qw(http_build_query http_build_query_utf8);

our $VERSION = "0.05";
our $VERSION = "0.06";

###########################################
sub http_build_query {
Expand Down
2 changes: 1 addition & 1 deletion README
@@ -1,5 +1,5 @@
######################################################################
PHP::HTTPBuildQuery 0.05
PHP::HTTPBuildQuery 0.06
######################################################################

NAME
Expand Down
3 changes: 2 additions & 1 deletion t/001Basic.t
Expand Up @@ -21,7 +21,8 @@ is( http_build_query(
},
},
),
cobble("foo[bar]=baz", "foo[quick][quack]=schmack"),
cobble("foo[bar]=baz", "foo[quick][quack]=schmack",
['bar', 'quick']),
"pod"
);

Expand Down

0 comments on commit 1e7434c

Please sign in to comment.