File tree Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Expand file tree Collapse file tree 2 files changed +7
-4
lines changed Original file line number Diff line number Diff line change @@ -13,10 +13,14 @@ and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0
13
13
### Changed
14
14
- dpctl-capi is now renamed to ` libsyclinterface ` (#666 ).
15
15
16
- ## [ 0.11.3 ] - 11/30 /2021
16
+ ## [ 0.11.4 ] - 12/03 /2021
17
17
18
18
### Fixed
19
+ - Fix tests for nested context factories expecting for integration environment by @PokhodenkoSA in https://github.com/IntelPython/dpctl/pull/705
20
+
21
+ ## [ 0.11.3] - 11/30/2021
19
22
23
+ ### Fixed
20
24
- Set the last byte in allocated char array to zero [ cherry picked from #650 ] (#699 )
21
25
22
26
## [ 0.11.2] - 11/29/2021
Original file line number Diff line number Diff line change @@ -159,9 +159,8 @@ def test_get_current_backend():
159
159
dpctl .set_global_queue ("cpu" )
160
160
161
161
162
- def test_nested_context_factory_is_empty_list ():
162
+ def test_nested_context_factory_is_list ():
163
163
assert isinstance (dpctl .nested_context_factories , list )
164
- assert not dpctl .nested_context_factories
165
164
166
165
167
166
@contextlib .contextmanager
@@ -181,7 +180,7 @@ def factory():
181
180
assert factory in dpctl .nested_context_factories
182
181
183
182
assert isinstance (dpctl .nested_context_factories , list )
184
- assert not dpctl .nested_context_factories
183
+ assert factory not in dpctl .nested_context_factories
185
184
186
185
187
186
@pytest .mark .skipif (not has_cpu (), reason = "No OpenCL CPU queues available" )
You can’t perform that action at this time.
0 commit comments