Skip to content

Commit f5019b1

Browse files
authored
Rename 'Force Tags' to 'Test Tags' in Settings section (#101)
1 parent 5e4f03d commit f5019b1

16 files changed

+16
-16
lines changed

src/section_01/recipe011_hello_world_logging.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Documentation PROBLEM:
55
... Congratulations! You have created your first Robot Framework script which outputs
66
... a text message and a variable to the log and also the console.
77
... This recipe only using keywords from BuiltIn standard library so there is no Library import.
8-
Force Tags py3.9 py3.10 py3.11
8+
Test Tags py3.9 py3.10 py3.11
99

1010
*** Variables ***
1111
${recipe} Recipe 1.1 Hello World Logging

src/section_01/recipe012_looping.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Documentation PROBLEM:
99
... No Operation keyword is used to "do nothing" although you may disagee.
1010
... This recipe only using keywords from BuiltIn standard library so there is no Library import.
1111
... NOTE: the old FOR syntax should no longer be used but you may still find it in old posts.
12-
Force Tags py3.9 py3.10 py3.11
12+
Test Tags py3.9 py3.10 py3.11
1313

1414
*** Variables ***
1515
${recipe} Recipe 1.2 Looping

src/section_02/recipe021_explaining_variable_prefixes.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -17,7 +17,7 @@ Documentation PROBLEM:
1717
... BuiltIn library also has keywords for creating lists and dictionaries, checking
1818
... length or count and checking membership or equality.
1919
Library Collections
20-
Force Tags py3.9 py3.10 py3.11
20+
Test Tags py3.9 py3.10 py3.11
2121

2222
*** Variables ***
2323
${recipe} Recipe 2.1 Explaining Variable Prefixes

src/section_02/recipe022_handling_lists.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -12,7 +12,7 @@ Documentation PROBLEM:
1212
... length or count and checking membership or equality.
1313
... Recipe 041 also demonstrates using list & dictionaries using only BuiltIn library keywords.
1414
Library Collections
15-
Force Tags py3.9 py3.10 py3.11
15+
Test Tags py3.9 py3.10 py3.11
1616

1717
*** Variables ***
1818
${recipe} Recipe 2.2 Handling Lists

src/section_02/recipe023_handling_dictionaries.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ Documentation PROBLEM:
1010
... checking membership.
1111
... Recipe 041 demonstrates using list & dictionaries using only BuiltIn library keywords.
1212
Library Collections
13-
Force Tags py3.9 py3.10 py3.11
13+
Test Tags py3.9 py3.10 py3.11
1414

1515
*** Variables ***
1616
${recipe} Recipe 2.3 Handling Dictionaries

src/section_03/recipe031_handling_dates.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Documentation PROBLEM:
99
... instead of number or time string formats,
1010
... - using extended variable syntax.
1111
Library DateTime
12-
Force Tags py3.9 py3.10 py3.11
12+
Test Tags py3.9 py3.10 py3.11
1313

1414
*** Variables ***
1515
${recipe} Recipe 3.1 Handling Dates

src/section_04/recipe041_working_with_file_system.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Documentation PROBLEM:
55
... This recipe demonstrates list variables, FOR loop and how to import a library.
66
... We choose ${TEMPDIR} here as it works on all platforms.
77
Library OperatingSystem
8-
Force Tags py3.9 py3.10 py3.11
8+
Test Tags py3.9 py3.10 py3.11
99
1010
*** Variables ***
1111
${recipe} Recipe 4.1 Working With File System

src/section_07/recipe071_string_manipulation_examples.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ Documentation PROBLEM:
55
... DISCUSSION:
66
... This recipe demonstrates using keywords from String standard library.
77
Library String
8-
Force Tags py3.9 py3.10 py3.11
8+
Test Tags py3.9 py3.10 py3.11
99

1010
*** Variables ***
1111
${recipe} Recipe 7.1 String Manipulation Examples

src/section_09/recipe091_working_with_requests_library.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@ Documentation PROBLEM:
99
... $ pip install -U robotframework-requests
1010
Library Collections
1111
Library RequestsLibrary
12-
Force Tags py3.9 py3.10 py3.11
12+
Test Tags py3.9 py3.10 py3.11
1313
1414
*** Variables ***
1515
${recipe} Recipe 9.1 Working With Requests Library

src/section_09/recipe092_working_with_rest_library.robot

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ Documentation PROBLEM:
77
... $ pip install -U RESTinstance
88
Library Collections
99
Library REST https://api.github.com
10-
Force Tags py3.9 py3.10 py3.11
10+
Test Tags py3.9 py3.10 py3.11
1111

1212
*** Variables ***
1313
${recipe} Recipe 9.2 Working With REST Library

0 commit comments

Comments
 (0)