Skip to content

Commit

Permalink
- sort array to get deterministic test output
Browse files Browse the repository at this point in the history
- 2.24.0
  • Loading branch information
jsuchome committed Jul 1, 2013
1 parent 7c229ef commit 0c6c9a7
Show file tree
Hide file tree
Showing 3 changed files with 8 additions and 2 deletions.
2 changes: 1 addition & 1 deletion VERSION
@@ -1 +1 @@
2.22.0
2.24.0
6 changes: 6 additions & 0 deletions package/yast2-http-server.changes
@@ -1,3 +1,9 @@
-------------------------------------------------------------------
Mon Jul 1 13:46:18 CEST 2013 - jsuchome@suse.cz

- sort array to get deterministic test output
- 2.24.0

-------------------------------------------------------------------
Thu Apr 19 10:56:50 UTC 2012 - jsrain@suse.cz

Expand Down
2 changes: 1 addition & 1 deletion src/YaPI/HTTPD.pm
Expand Up @@ -444,7 +444,7 @@ sub GetHost {
}
}

return [@{$ret->{'DATA'}}] if (defined $ret);
return [sort @{$ret->{'DATA'}}] if (defined $ret);
return [];
}

Expand Down

0 comments on commit 0c6c9a7

Please sign in to comment.