Skip to content

Commit 1a24728

Browse files
committed
Update description of unit test "02-select.t"
1 parent cf179fa commit 1a24728

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

t/02-select.t

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,13 +7,13 @@ use CellBIS::SQL::Abstract;
77
my $sql_abstract = CellBIS::SQL::Abstract->new();
88

99
my $select1 = $sql_abstract->select('table_test', []);
10-
ok($select1 eq 'SELECT * FROM table_test', "[$select1] is true");
10+
ok($select1 eq 'SELECT * FROM table_test', "SQL Query [$select1] is true");
1111

1212
my $select2 = $sql_abstract->select('table_test', [], {
1313
'orderby' => 'id_mhs_kelas',
1414
'order' => 'asc',
1515
'limit' => '5'
1616
});
17-
ok($select2 eq 'SELECT * FROM table_test ORDER BY id_mhs_kelas ASC LIMIT 5', "[$select2] is true");
17+
ok($select2 eq 'SELECT * FROM table_test ORDER BY id_mhs_kelas ASC LIMIT 5', "SQL Query [$select2] is true");
1818

1919
done_testing();

0 commit comments

Comments
 (0)