record_property is no longer experimental

This commit is contained in:
Ronny Pfannschmidt 2018-04-01 15:31:22 +02:00
parent 77128ee2dc
commit 211f3c47b5
2 changed files with 2 additions and 5 deletions

View File

@ -245,11 +245,6 @@ def record_property(request):
def test_function(record_property):
record_property("example_key", 1)
"""
request.node.warn(
code='C3',
message='record_property is an experimental feature',
)
def append_property(name, value):
request.node.user_properties.append((name, value))
return append_property

2
changelog/3360.trivial Normal file
View File

@ -0,0 +1,2 @@
record_property is no longer experimental, removing the warnings was forgotten.