Skip to content

Commit 986a790

Browse files
committed
monitor object added to stdlib, test updated
1 parent af8246e commit 986a790

File tree

2 files changed

+4
-2
lines changed

2 files changed

+4
-2
lines changed

src/main/resources/StdLib.smol

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -127,4 +127,6 @@ class ExplList<LISTTT>(LISTTT content, ExplList<LISTTT> next)
127127
end
128128
end
129129

130-
class ExplPair<PAIRTONET,PAIRTTWOT>(PAIRTONET first, PAIRTTWOT second) end
130+
class ExplPair<PAIRTONET,PAIRTTWOT>(PAIRTONET first, PAIRTTWOT second) end
131+
132+
hidden class Monitor<MONITORT>() end

src/test/kotlin/no/uio/microobject/test/triples/OWLQueryTest.kt

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ class OWLQueryTest: MicroObjectTest() {
1717

1818
"OWL query 1" {
1919
val s = interpreter.owlQuery(q1)
20-
assertEquals(s.count(), 8)
20+
assertEquals(s.count(), 9)
2121
}
2222
"OWL query 2" {
2323
val s = interpreter.owlQuery(q2)

0 commit comments

Comments
 (0)