Skip to content

Commit

Permalink
Fix typo in ObjectFactory. Alphabetize directories in t/harness
Browse files Browse the repository at this point in the history
  • Loading branch information
Whiteknight committed Nov 20, 2011
1 parent 90dc23a commit 69bf85f
Show file tree
Hide file tree
Showing 2 changed files with 9 additions and 9 deletions.
4 changes: 2 additions & 2 deletions src/core/ObjectFactory.winxed
Original file line number Diff line number Diff line change
Expand Up @@ -26,8 +26,8 @@ class Rosella.ObjectFactory
if (self.target_type != null)
return self.create_typed(self.target_type, pos:[flat], named:[flat,named]);
Rosella.Error.invalid(__FUNCTION__,
"Cannot create an object without at type.\n" +
"You must provide a type to create_typed, pass one to the " +
"Cannot create an object without a type.\n" +
"You must provide a type to create_typed or pass one to the " +
"constructor for ObjectFactory"
);
}
Expand Down
14 changes: 7 additions & 7 deletions t/harness
Original file line number Diff line number Diff line change
Expand Up @@ -12,26 +12,26 @@ sub core_tests() {

sub library_tests() {
my %h := {};
%h{"test"} := "NQP";
%h{"tap_harness"} := "Winxed";
%h{"action"} := "NQP";
%h{"container"} := "NQP";
%h{"query"} := "NQP";
%h{"proxy"} := "NQP";
%h{"mockobject"} := "NQP";
%h{"memoize"} := "NQP";
%h{"filesystem"} := "NQP";
%h{"memoize"} := "NQP";
%h{"mockobject"} := "NQP";
%h{"path"} := "NQP";
%h{"proxy"} := "NQP";
%h{"query"} := "NQP";
%h{"string"} := "NQP";
%h{"tap_harness"} := "Winxed";
%h{"template"} := "Winxed";
%h{"test"} := "NQP";
%h;
}

sub unstable_tests() {
my %h := {};
%h{"prototype"} := "NQP";
%h{"commandline"} := "Winxed";
%h{"event"} := "Winxed";
%h{"prototype"} := "NQP";
%h;
}

Expand Down

0 comments on commit 69bf85f

Please sign in to comment.