You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
@unison/cloud/main> view Storage.doc.example.test
Storage.doc.example.test : [Result]
Storage.doc.example.test = test.verify do
use OrderedTable.write tx
rs =
Either.toException <| (Storage.doc.example do
tbl : OrderedTable Text Text
tbl = OrderedTable.named exampleDb "favorite-foods" Universal.ordering
populateTable = transact exampleDb do
tx tbl "Alice" "🍦"
tx tbl "Bob" "🍍"
Remote.parMap (OrderedTable.read tbl) ["Alice", "Bob"])
test.ensureEqual rs ["🍦", "🍍"]
@unison/cloud/main> test Storage.doc.example.test
⚠️
The namespace Storage.doc.example.test doesn't exist.
This fails because test <path> takes a namespace, and runs everything within it. Storage.doc.example.test isn't within the Storage.doc.example.test namespace, it's a term in the Storage.doc.example namespace.
Describe and demonstrate the bug
This fails because
test <path>
takes a namespace, and runs everything within it.Storage.doc.example.test
isn't within theStorage.doc.example.test
namespace, it's a term in theStorage.doc.example
namespace.Related to #5539
The text was updated successfully, but these errors were encountered: