about summary refs log tree commit diff stats
path: root/090scenario_filesystem_test.mu
diff options
context:
space:
mode:
Diffstat (limited to '090scenario_filesystem_test.mu')
-rw-r--r--090scenario_filesystem_test.mu8
1 files changed, 4 insertions, 4 deletions
diff --git a/090scenario_filesystem_test.mu b/090scenario_filesystem_test.mu
index fe737300..c33eeb81 100644
--- a/090scenario_filesystem_test.mu
+++ b/090scenario_filesystem_test.mu
@@ -7,7 +7,7 @@ scenario read-from-fake-file [
       |xyz|
     ]
   ]
-  contents:&:source:char <- start-reading resources:&:resources, [a]
+  contents:&:source:char <- start-reading resources, [a]
   1:char/raw <- read contents
   2:char/raw <- read contents
   3:char/raw <- read contents
@@ -26,7 +26,7 @@ scenario write-to-fake-file [
   local-scope
   assume-resources [
   ]
-  sink:&:sink:char, writer:num/routine <- start-writing resources:&:resources, [a]
+  sink:&:sink:char, writer:num/routine <- start-writing resources, [a]
   sink <- write sink, 120/x
   sink <- write sink, 121/y
   close sink
@@ -43,7 +43,7 @@ scenario write-to-fake-file-that-exists [
   assume-resources [
     [a] <- []
   ]
-  sink:&:sink:char, writer:num/routine <- start-writing resources:&:resources, [a]
+  sink:&:sink:char, writer:num/routine <- start-writing resources, [a]
   sink <- write sink, 120/x
   sink <- write sink, 121/y
   close sink
@@ -63,7 +63,7 @@ scenario write-to-existing-file-preserves-other-files [
       |bcd|
     ]
   ]
-  sink:&:sink:char, writer:num/routine <- start-writing resources:&:resources, [a]
+  sink:&:sink:char, writer:num/routine <- start-writing resources, [a]
   sink <- write sink, 120/x
   sink <- write sink, 121/y
   close sink