We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 08ecbfb commit 70c2c74Copy full SHA for 70c2c74
test/temporal/test/side_effect.clj
@@ -7,7 +7,7 @@
7
[temporal.workflow :refer [defworkflow]]
8
[temporal.side-effect :as side-effect]
9
[temporal.test.utils :as t])
10
- (:import [java.time LocalTime]))
+ (:import [java.time Instant]))
11
12
(use-fixtures :once t/wrap-service)
13
@@ -20,4 +20,4 @@
20
(testing "Verifies that we can round-trip through start"
21
(let [workflow (t/create-workflow side-effect-workflow)]
22
(c/start workflow {})
23
- (is (instance? LocalTime @(c/get-result workflow))))))
+ (is (instance? Instant @(c/get-result workflow))))))
0 commit comments