Skip to content

Commit

Permalink
Remove debug output.
Browse files Browse the repository at this point in the history
  • Loading branch information
vnayar committed Nov 6, 2024
1 parent 567ea32 commit ae8ca7e
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions hdtest/source/generaltest.d
Original file line number Diff line number Diff line change
Expand Up @@ -263,8 +263,8 @@ class GeneralTest : HibernateTest {
a1.name = "Bucky O'Hare";
int id = sess.save(a1).get!int;

auto query = sess.createQuery("FROM Asset WHERE name=:Name").setParameter("Name", "Bucky O'Hare");
writeln("FLOOB: query results", query.listRows());
auto query = sess.createQuery("FROM Asset WHERE name=:Name").setParameter("Name", "Bucky O'Hare").list!Asset;
assert(query.length == 1);
}
}

0 comments on commit ae8ca7e

Please sign in to comment.